Untitled

 avatar
unknown
php
3 years ago
163 B
14
Indexable
<?php
interface UserRepositoryInterface
{
	public function getUserById(int $id): User;

    /**
     * @return User[]
     */
	public function getUsers(): array;
}
Editor is loading...