Skip to content

Commit

Permalink
ci: fix errors in failing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Jun 18, 2024
1 parent 32c3ceb commit 2602ad2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion composer-require-checker.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"Illuminate\\Console\\Command",
"config_path",
"Symfony\\Component\\Yaml\\Dumper",
"Illuminate\\Http\\Response"
"Illuminate\\Http\\Response",
"Illuminate\\Support\\Facades\\Facade",
"Illuminate\\Contracts\\Config\\Repository"
]
}
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
"require": {
"php": "^8.2",
"illuminate/http": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/support": "^11.0",
"ramsey/uuid": "^4.7",
"symfony/property-access": "^7.1",
"symfony/property-info": "^7.1",
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion infection.json.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}
},
"minCoveredMsi": 90,
"minMsi": 85,
"minMsi": 70,
"phpUnit": {
"configDir": "./"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/app/Response/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class Item
private string $onlyForAdmin = 'secret';

#[Groups(['default', 'private'])]
private ?DateTimeImmutable $dateTime;
private readonly ?DateTimeImmutable $dateTime;

public function __construct(?DateTimeImmutable $dateTime = null)
{
Expand Down

0 comments on commit 2602ad2

Please sign in to comment.