Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Toflar committed May 7, 2024
1 parent 3f43eea commit 90f6103
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.1]
php: [8.1, 8.2, 8.3]
steps:
- name: Setup PHP
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand Down
2 changes: 0 additions & 2 deletions src/Form/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -969,8 +969,6 @@ public function __construct($model, $value, $field, $name)
$this->field = $field;
$this->inputName = $name;
$this->activeRecord = $model; // BC

parent::__construct();
}

public function getCurrentRecord(int|string|null $id = null, string|null $table = null): array|null
Expand Down
2 changes: 1 addition & 1 deletion tests/StringParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ public function flattenDataProvider()
'foo',
[],
[
'foo_bar' => 'baz',
'foo_bar_baz' => '1',
'foo_bar' => 'baz',
'foo' => '',
],
],
Expand Down

0 comments on commit 90f6103

Please sign in to comment.