move inline use statements to file headers

two type hints introduced earlier on this branch referenced
classes by their fully-qualified names inline. hoist them to
the top-of-file use block per backend-context.md PHP rules.
This commit is contained in:
Yisroel Baum 2026-05-02 22:05:58 +03:00
parent 3a1e91cc4f
commit db93871194
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
2 changed files with 4 additions and 2 deletions

View file

@ -11,6 +11,7 @@ use App\ScheduledNode\UseCases\GetTodaysSchedule;
use App\ScheduledNode\UseCases\GetTodaysScheduleRequest;
use App\Text\Text;
use App\User\UseCases\CreateUserDto;
use App\User\User;
use App\ValueObjects\EmailAddress;
use DateTimeImmutable;
use DomainException;
@ -29,7 +30,7 @@ class GetTodaysScheduleTest extends TestCase
private GetTodaysSchedule $useCase;
private \App\User\User $user;
private User $user;
protected function setUp(): void
{