Skip to content

Commit 2e2ed6c

Browse files
committed
Update workflow
1 parent e01e446 commit 2e2ed6c

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/master.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- '8.1'
1515
- '8.2'
1616
- '8.3'
17+
- '8.4'
1718
steps:
1819
- uses: actions/checkout@v2
1920
with:
@@ -27,7 +28,7 @@ jobs:
2728
id: composercache
2829
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
2930
- name: Cache dependencies
30-
uses: actions/cache@v2
31+
uses: actions/cache@v4
3132
with:
3233
path: ${{ steps.composercache.outputs.dir }}
3334
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

phpstan.neon

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,4 @@ parameters:
55
paths:
66
- src
77
- tests
8-
ignoreErrors:
9-
-
10-
message: '#^Parameter \#2 \$limit of static method Inspirum\\Arrayable\\Convertor\:\:toArray\(\) expects int<1, max>|null, int|null given\.$#'
11-
path: tests/ConvertorTest.php
12-
count: 1
8+
ignoreErrors: []

tests/ConvertorTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ final class ConvertorTest extends TestCase
1919
{
2020
/**
2121
* @param array<mixed> $result
22+
* @param positive-int|null $limit
2223
*/
2324
#[DataProvider('providesToArray')]
2425
public function testToArray(mixed $data, array|Throwable $result, ?int $limit = null): void

0 commit comments

Comments
 (0)