Skip to content

Commit

Permalink
TASK: Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Nov 3, 2023
1 parent 10400ed commit ecd193d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Classes/Domain/CliEnvironment.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class CliEnvironment
{
public function __construct(
/** @psalm-readonly */
/** @psalm-readonly */
public bool $isWindows
) {
}
Expand Down
6 changes: 3 additions & 3 deletions Classes/Domain/Health.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
class Health
{
public function __construct(
/** @psalm-readonly */
/** @psalm-readonly */
public string $message,
/** @psalm-readonly */
/** @psalm-readonly */
public Status $status,
/** @psalm-readonly */
/** @psalm-readonly */
public string $title = '',
) {
}
Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/HealthcheckEnvironment.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class HealthcheckEnvironment
{
public function __construct(
private ApplicationContext $applicationContext,
/** @psalm-readonly */
/** @psalm-readonly */
public CliEnvironment | WebEnvironment $executionEnvironment
) {
}
Expand Down
4 changes: 2 additions & 2 deletions Classes/Domain/WebEnvironment.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
class WebEnvironment
{
public function __construct(
/** @psalm-readonly */
/** @psalm-readonly */
public Uri $requestUri,
/** @psalm-readonly */
/** @psalm-readonly */
public bool $isWindows
) {
}
Expand Down

0 comments on commit ecd193d

Please sign in to comment.