Untitled
unknown
php
2 years ago
163 B
13
Indexable
<?php
interface UserRepositoryInterface
{
	public function getUserById(int $id): User;
    /**
     * @return User[]
     */
	public function getUsers(): array;
}Editor is loading...
<?php
interface UserRepositoryInterface
{
	public function getUserById(int $id): User;
    /**
     * @return User[]
     */
	public function getUsers(): array;
}