mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
8c1a680f84
This reverts commit 051fb316a4
.
10 lines
194 B
PHP
10 lines
194 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\VKAPI\Handlers;
|
|
|
|
final class Utils extends VKAPIRequestHandler
|
|
{
|
|
function getServerTime(): int
|
|
{
|
|
return time();
|
|
}
|
|
}
|