soko-web/src/Interfaces/Repository/IUserRepository.php
Pőcze Bence a17a88e9d4
All checks were successful
soko-web/pipeline/head This commit looks good
initial commit for soko-web
2023-04-07 19:32:15 +02:00

9 lines
174 B
PHP

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