9 lines
174 B
PHP
9 lines
174 B
PHP
<?php namespace SokoWeb\Interfaces\Repository;
|
|
|
|
use SokoWeb\Interfaces\Authentication\IUser;
|
|
|
|
interface IUserRepository
|
|
{
|
|
public function getById(int $userId): ?IUser;
|
|
}
|