Skip to content

Commit fb7d17a

Browse files
committed
5.1.9
1 parent 3304d6d commit fb7d17a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@
162162
},
163163
"minimum-stability": "dev",
164164
"prefer-stable": true,
165-
"version": "5.1.8"
165+
"version": "5.1.9"
166166
}

src/Support/Fluent.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Fluent extends \Illuminate\Support\Fluent
1616
* @param array<string, mixed> $attributes
1717
* @return $this
1818
*/
19-
public function fill(array $attributes)
19+
public function fill($attributes)
2020
{
2121
foreach ($attributes as $key => $value) {
2222
$attribute = Str::replace('->', '.', $key);
@@ -35,7 +35,7 @@ public function fill(array $attributes)
3535
* @param array<string, mixed> $attributes
3636
* @return $this
3737
*/
38-
public function forceFill(array $attributes)
38+
public function forceFill($attributes)
3939
{
4040
foreach ($attributes as $key => $value) {
4141
$attribute = Str::replace('->', '.', $key);

0 commit comments

Comments
 (0)