1
1
Fork 0
mirror of https://github.com/openvk/openvk synced 2025-01-13 19:43:13 +03:00
openvk/VKAPI/Handlers/Utils.php

11 lines
194 B
PHP
Raw Permalink Normal View History

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