Skip to content

Commit 5bc0a02

Browse files
Revert "Do not use PHP 8.2 syntax"
This reverts commit 14da4da.
1 parent 3f52c79 commit 5bc0a02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TextUI/Command/Commands/CheckPhpConfigurationCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* @internal This class is not covered by the backward compatibility promise for PHPUnit
2626
*/
27-
final class CheckPhpConfigurationCommand implements Command
27+
final readonly class CheckPhpConfigurationCommand implements Command
2828
{
2929
/**
3030
* @var non-empty-array<non-empty-string, array{expectedValue: non-empty-string, valueForConfiguration: non-empty-string, requiredExtensions: list<non-empty-string>}>
@@ -66,7 +66,7 @@ final class CheckPhpConfigurationCommand implements Command
6666
'requiredExtensions' => [],
6767
],
6868
];
69-
private readonly bool $colorize;
69+
private bool $colorize;
7070

7171
public function __construct()
7272
{

0 commit comments

Comments
 (0)