Skip to content

Commit 47819ec

Browse files
committed
chore: linted
1 parent f6547b1 commit 47819ec

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Application/Providers/ApplicationServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected function registerQueryHandlers(): void
6363
$queryBus = app(QueryBusContract::class);
6464
$queryBus->register([
6565
GetUserByEmailQuery::class => GetUserByEmailQueryHandler::class,
66-
GetUserByIdQuery::class => GetUserByIdQueryHandler::class
66+
GetUserByIdQuery::class => GetUserByIdQueryHandler::class,
6767
]);
6868
}
6969
}

src/Application/User/CommandHandlers/CreateUserCommandHandler.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010

1111
final class CreateUserCommandHandler extends CommandHandler
1212
{
13-
public function __construct(private readonly UserRepositoryContract $userRepository)
14-
{
15-
}
13+
public function __construct(private readonly UserRepositoryContract $userRepository) {}
1614

1715
public function handle(CreateUserCommand $command): string
1816
{

0 commit comments

Comments
 (0)