Skip to content

Commit

Permalink
style(php-cs-fixer): lint php files and fix coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions authored and github-actions[bot] committed Nov 15, 2024
1 parent 1499dd3 commit 2f10c5b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/src/Domain/Auth/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ private function __construct(
private int $issuedAt,
private int $expiration,
private string $authorizedParty,
private string $scope
private string $scope,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/Domain/Auth/TokenFootprint.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public function __construct(
private string $id,
private string $party,
private string $realm
private string $realm,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/Domain/Project/Events/ProjectCreated.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __construct(
private ProjectId $id,
private string $name,
private string $description,
private Signature $signature
private Signature $signature,
) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class UuidTypecast implements CastableInterface, UncastableInterface
private array $rules = [];

public function __construct(
private readonly DatabaseInterface $database
private readonly DatabaseInterface $database,
) {
}

Expand Down

0 comments on commit 2f10c5b

Please sign in to comment.