Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Aug 4, 2022
1 parent 3dbe22a commit 92d180b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Auth/IdentityRepository.php
Expand Up @@ -11,7 +11,7 @@

final class IdentityRepository extends Select\Repository implements IdentityRepositoryInterface
{
public function __construct(private EntityWriter $entityWriter, Select $select,)
public function __construct(private EntityWriter $entityWriter, Select $select)
{
parent::__construct($select);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Blog/Post/PostRepository.php
Expand Up @@ -16,7 +16,7 @@

final class PostRepository extends Select\Repository
{
public function __construct(private EntityWriter $entityWriter,Select $select)
public function __construct(private EntityWriter $entityWriter, Select $select)
{
parent::__construct($select);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Contact/ContactMailer.php
Expand Up @@ -28,7 +28,7 @@ public function __construct(
$this->mailer = $this->mailer->withTemplate(new MessageBodyTemplate(__DIR__ . '/mail/'));
}

public function send(FormModelInterface $form, ServerRequestInterface $request) : void
public function send(FormModelInterface $form, ServerRequestInterface $request): void
{
$message = $this->mailer
->compose(
Expand Down

0 comments on commit 92d180b

Please sign in to comment.