mirror of
https://github.com/openvk/openvk
synced 2024-11-15 03:31:18 +03:00
19 lines
343 B
PHP
19 lines
343 B
PHP
|
<?php declare(strict_types=1);
|
||
|
namespace openvk\ServiceAPI;
|
||
|
use openvk\Web\Models\Entities\User;
|
||
|
|
||
|
class Clients implements Handler
|
||
|
{
|
||
|
protected $user;
|
||
|
|
||
|
function __construct(?User $user)
|
||
|
{
|
||
|
$this->user = $user;
|
||
|
}
|
||
|
|
||
|
function resolve(string $client_name, callable $resolve, callable $reject): void
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|