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

View File

@ -1999,7 +1999,7 @@ final class ApiController extends Controller
* *
* @since 1.0.0 * @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); $cliEventHandling = (bool) ($this->app->appSettings->get(null, SettingsEnum::CLI_ACTIVE)->content ?? false);

View File

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

View File

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

View File

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