Skip to content

Commit

Permalink
Fixed CI + tests
Browse files Browse the repository at this point in the history
  • Loading branch information
voidgraphics committed Jan 18, 2025
1 parent b093def commit cc68a8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
php: [7.3, 7.4, 8.0, 8.1]
php: [8.1, 8.2, 8.3, 8.4]
prefer: ['--prefer-lowest', '--prefer-stable']

steps:
Expand Down
2 changes: 1 addition & 1 deletion src/Layouts/Layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class Layout implements LayoutInterface, JsonSerializable, ArrayAccess, Arrayabl
* @param int|null $limit
* @return void
*/
public function __construct($title = null, $name = null, $fields = null, $key = null, $attributes = [], callable $removeCallbackMethod = null)
public function __construct($title = null, $name = null, $fields = null, $key = null, $attributes = [], ?callable $removeCallbackMethod = null)
{
$this->title = $title ?? $this->title();
$this->name = $name ?? $this->name();
Expand Down

0 comments on commit cc68a8e

Please sign in to comment.