Skip to content

Commit b7b3790

Browse files
committed
Test on 8.4 and ARM64
1 parent 973ebba commit b7b3790

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ jobs:
134134
- "8.1"
135135
- "8.2"
136136
- "8.3"
137+
- "8.4"
137138
count: ${{ fromJson(needs.chunk-matrix.outputs.count) }}
138139
chunk: ${{ fromJson(needs.chunk-matrix.outputs.chunks) }}
139140

.github/workflows/shepherd.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: shivammathur/setup-php@v2
1515
with:
16-
php-version: '8.2'
16+
php-version: '8.4'
1717
ini-values: zend.assertions=1
1818
tools: composer:v2
1919
coverage: none
@@ -26,4 +26,4 @@ jobs:
2626
COMPOSER_ROOT_VERSION: dev-master
2727

2828
- name: Run Psalm
29-
run: ./psalm --threads=2 --output-format=github --shepherd
29+
run: ./psalm --output-format=github --shepherd

src/Psalm/Internal/Provider/ReturnTypeProvider/FilterInputReturnTypeProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public static function getFunctionReturnType(FunctionReturnTypeProviderEvent $ev
166166
'$_POST' => INPUT_POST,
167167
'$_COOKIE' => INPUT_COOKIE,
168168
'$_SERVER' => INPUT_SERVER,
169-
'$_ENV' => INPUT_ENV
169+
'$_ENV' => INPUT_ENV,
170170
];
171171

172172
$first_arg_type_type = $first_arg_type->getSingleIntLiteral();

0 commit comments

Comments
 (0)