11 lines
159 B
PHP
Executable File
11 lines
159 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Mautic\UserBundle\Security;
|
|
|
|
interface UserTokenSetterInterface
|
|
{
|
|
public function setUser(int $userId): void;
|
|
}
|