mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
8 lines
No EOL
158 B
PHP
8 lines
No EOL
158 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\ServiceAPI;
|
|
use openvk\Web\Models\Entities\User;
|
|
|
|
interface Handler
|
|
{
|
|
function __construct(?User $user);
|
|
} |