Skip to content

Commit 97173f1

Browse files
authored
Merge pull request #146 from Chris53897/patch-1
ci: add tests for PHP 8.5
2 parents f6eb59c + f92fe5e commit 97173f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
29+
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
3030
min_stability: [ '' ]
3131
name_suffix: [ '' ]
3232
composer_flags: [ '' ]
3333
include:
34-
- php: '8.4'
34+
- php: '8.5'
3535
min_stability: 'dev'
3636
name_suffix: ' (dev deps)'
3737
- php: '7.4'

Processor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private function processParams(array $config, array $expectedParams, array $actu
9292

9393
$keepOutdatedParams = false;
9494
if (isset($config['keep-outdated'])) {
95-
$keepOutdatedParams = (boolean) $config['keep-outdated'];
95+
$keepOutdatedParams = (bool) $config['keep-outdated'];
9696
}
9797

9898
if (!$keepOutdatedParams) {

0 commit comments

Comments
 (0)