File tree 4 files changed +4
-9
lines changed
4 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : true
10
10
matrix :
11
- php : [ 8.2, 8.3 ]
11
+ php : [ 8.2, 8.3, 8.4 ]
12
12
dependency-version : [ prefer-lowest, prefer-stable ]
13
13
14
14
name : P${{ matrix.php }} - ${{ matrix.dependency-version }}
22
22
with :
23
23
php-version : ${{ matrix.php }}
24
24
coverage : none
25
- tools : composer:v2
26
25
27
26
- name : Cache dependencies
28
27
uses : actions/cache@v4
Original file line number Diff line number Diff line change @@ -19,7 +19,3 @@ coverage: ## to perform unit tests with code coverage.
19
19
.PHONY : phpstan
20
20
phpstan : # # to run PHPStan
21
21
php vendor/bin/phpstan analyse
22
-
23
- .PHONY : infection
24
- infection : # # to run Infection
25
- php vendor/bin/infection --threads=max
Original file line number Diff line number Diff line change 18
18
}
19
19
],
20
20
"require" : {
21
- "php" : " 8.2.* || 8.3.*"
21
+ "php" : " 8.2.* || 8.3.* || 8.4.* "
22
22
},
23
23
"autoload" : {
24
24
"psr-4" : {
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ final public function __construct(mixed $value)
27
27
$ this ->setValue ($ value );
28
28
}
29
29
30
- public function getValue (string |int $ format = null ): mixed
30
+ public function getValue (string |int | null $ format = null ): mixed
31
31
{
32
32
if (empty ($ format )) {
33
33
return $ this ->value ;
@@ -163,7 +163,7 @@ public static function keys(): array
163
163
/**
164
164
* @return static[]
165
165
*/
166
- public static function values (string $ pattern = null ): array
166
+ public static function values (? string $ pattern = null ): array
167
167
{
168
168
$ out = [];
169
169
You can’t perform that action at this time.
0 commit comments