workflow fix

This commit is contained in:
Dennis Eichhorn 2022-09-30 00:37:11 +02:00
parent a956effa19
commit a773908a8a
5 changed files with 8 additions and 8 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

@ -1999,7 +1999,7 @@ final class ApiController extends Controller
*
* @since 1.0.0
*/
public function cliEventCall(...$data) : void
public function cliEventCall(mixed ...$data) : void
{
$cliEventHandling = (bool) ($this->app->appSettings->get(null, SettingsEnum::CLI_ACTIVE)->content ?? false);

View File

@ -76,7 +76,7 @@ class GroupTagSelectorPopupView extends View
/**
* {@inheritdoc}
*/
public function render(...$data) : string
public function render(mixed ...$data) : string
{
$this->id = $data[0] ?? $this->id;
return parent::render();

View File

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

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",