Files
LaravelSkeletonAPI/app/Shared/Service/User/SearchByIdContract.php
2026-01-05 16:33:20 +04:00

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;
}