openvk/VKAPI/Handlers/Utils.php
2023-06-03 11:14:39 +03:00

10 lines
194 B
PHP

<?php declare(strict_types=1);
namespace openvk\VKAPI\Handlers;
final class Utils extends VKAPIRequestHandler
{
function getServerTime(): int
{
return time();
}
}