workflow fix

This commit is contained in:
Dennis Eichhorn 2022-09-30 00:37:11 +02:00
parent 18dc891d35
commit 067b1b06ea
3 changed files with 6 additions and 6 deletions

View File

@ -73,7 +73,7 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
php-versions: ['8.0']
php-versions: ['8.1']
steps:
- name: Checkout Repository
uses: actions/checkout@main
@ -135,7 +135,7 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
php-versions: ['8.0']
php-versions: ['8.1']
steps:
- name: Checkout Repository
uses: actions/checkout@main
@ -184,7 +184,7 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
php-versions: ['8.0']
php-versions: ['8.1']
steps:
- name: Checkout Repository
uses: actions/checkout@main
@ -240,7 +240,7 @@ jobs:
submodules: recursive
token: ${{ secrets.GH_PAT }}
- name: Lint Code Base
uses: github/super-linter@v4
uses: github/super-linter/slim@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: develop

View File

@ -110,7 +110,7 @@ class BaseView extends View
/**
* {@inheritdoc}
*/
public function render(...$data) : string
public function render(mixed ...$data) : string
{
$this->id = $data[0];
$this->name = $data[1];

View File

@ -12,7 +12,7 @@
"friendsofphp/php-cs-fixer": ">=3.8",
"squizlabs/php_codesniffer": ">=3.6",
"phpmd/phpmd": ">=2.9",
"phpstan/phpstan": ">=1.5.4",
"phpstan/phpstan": ">=1.8.6",
"phan/phan": ">=3.2.6"
},
"minimum-stability": "dev",