mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
d65d747ad3
Signed-off-by: Celestora <kitsuruko@gmail.com>
24 lines
570 B
PHP
24 lines
570 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\ServiceAPI;
|
|
use openvk\Web\Models\Entities\User;
|
|
use openvk\Web\Util\DateTime;
|
|
|
|
class Service implements Handler
|
|
{
|
|
protected $user;
|
|
|
|
function __construct(?User $user)
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
|
|
function getTime(callable $resolve, callable $reject): void
|
|
{
|
|
$resolve(trim((new DateTime)->format("%e %B %G" . tr("time_at_sp") . "%X")));
|
|
}
|
|
|
|
function getServerVersion(callable $resolve, callable $reject): void
|
|
{
|
|
$resolve("OVK " . OPENVK_VERSION);
|
|
}
|
|
}
|