format: fix psr12 style issues

phpcbf auto-fixes: string concatenation spacing, single-line class braces, closing brace placement.
This commit is contained in:
Yisroel Baum 2026-05-16 21:34:30 +03:00
parent 9703f82788
commit 56ddba707d
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
27 changed files with 39 additions and 20 deletions

View file

@ -14,7 +14,8 @@ class AuthenticateUser
public function __construct(
private UserRepository $userRepo,
private PasswordHasher $hasher,
) {}
) {
}
/**
* @throws BadRequestException

View file

@ -7,5 +7,6 @@ class AuthenticateUserRequest
public function __construct(
public ?string $email,
public ?string $password,
) {}
) {
}
}