Skip to content

Commit cc68a8e

Browse files
committed
Fixed CI + tests
1 parent b093def commit cc68a8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
php: [7.3, 7.4, 8.0, 8.1]
13+
php: [8.1, 8.2, 8.3, 8.4]
1414
prefer: ['--prefer-lowest', '--prefer-stable']
1515

1616
steps:

src/Layouts/Layout.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class Layout implements LayoutInterface, JsonSerializable, ArrayAccess, Arrayabl
138138
* @param int|null $limit
139139
* @return void
140140
*/
141-
public function __construct($title = null, $name = null, $fields = null, $key = null, $attributes = [], callable $removeCallbackMethod = null)
141+
public function __construct($title = null, $name = null, $fields = null, $key = null, $attributes = [], ?callable $removeCallbackMethod = null)
142142
{
143143
$this->title = $title ?? $this->title();
144144
$this->name = $name ?? $this->name();

0 commit comments

Comments
 (0)