Skip to content

Commit 17daa1e

Browse files
authored
Applied fixes from StyleCI (#16489)
1 parent 42210c7 commit 17daa1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Database/Eloquent/Relations/BelongsTo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ protected function getEagerModelKeys(array $models)
175175
// fail plus returns zero results, which should be what the developer expects.
176176
if (count($keys) === 0) {
177177
return [$this->related->getIncrementing() &&
178-
$this->related->getKeyType() === 'int' ? 0 : null];
178+
$this->related->getKeyType() === 'int' ? 0 : null, ];
179179
}
180180

181181
return array_values(array_unique($keys));

0 commit comments

Comments
 (0)