Skip to content

Commit b140b6f

Browse files
CodeWithDennisgithub-actions[bot]
authored andcommitted
Fix styling
1 parent a5201d1 commit b140b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SelectTree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ private function buildTreeFromResults($results, $parent = null): Collection
118118
// Group results by their parent IDs
119119
foreach ($results as $result) {
120120
$parentId = $result->{$this->getParentAttribute()};
121-
if (!isset($resultMap[$parentId])) {
121+
if (! isset($resultMap[$parentId])) {
122122
$resultMap[$parentId] = [];
123123
}
124124
$resultMap[$parentId][] = $result;

0 commit comments

Comments
 (0)