13 lines
176 B
PHP
13 lines
176 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Shared\Service\User;
|
|
|
|
use App\Models\User\User;
|
|
|
|
interface SearchByIdContract
|
|
{
|
|
public function getById(string $id): User;
|
|
}
|