Skip to content

Commit ddc0b42

Browse files
committed
fix styleci
1 parent 9703c8e commit ddc0b42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Database/Eloquent/Model.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ protected function incrementOrDecrement($column, $amount, $extra, $method)
10271027
/**
10281028
* Run the incrementEach or decrementEach method on the model.
10291029
*
1030-
* @param array<string, float|int|numeric-string> $columns
1030+
* @param array<string, float|int|numeric-string> $columns
10311031
* @param array $extra
10321032
* @param string $method
10331033
* @return int

tests/Integration/Database/EloquentUpdateTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public function testIncrement()
118118
TestUpdateModel3::increment('wallet_1');
119119
TestUpdateModel3::incrementEach([
120120
'wallet_1' => 10,
121-
'wallet_2' => -20
121+
'wallet_2' => -20,
122122
]);
123123

124124
$models = TestUpdateModel3::withoutGlobalScopes()->orderBy('id')->get();

0 commit comments

Comments
 (0)