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:
parent
3a1e91cc4f
commit
db93871194
2 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue