Untitled

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

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