mirror of
https://github.com/openvk/openvk
synced 2025-04-21 07:33:05 +03:00
12 lines
169 B
PHP
12 lines
169 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk\ServiceAPI;
|
|
|
|
use openvk\Web\Models\Entities\User;
|
|
|
|
interface Handler
|
|
{
|
|
public function __construct(?User $user);
|
|
}
|