Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithDennis authored and github-actions[bot] committed Sep 20, 2023
1 parent f3b3a3e commit eda3e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SelectTree.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private function buildTree(int $parent = null): array|Collection
->where($this->getParentAttribute(), $parent);

// If we're not at the root level and a modification callback is provided, apply it to the query.
if (!$parent && $this->modifyQueryUsing) {
if (! $parent && $this->modifyQueryUsing) {
$defaultQuery = $this->evaluate($this->modifyQueryUsing, ['query' => $defaultQuery]);
}

Expand Down

0 comments on commit eda3e82

Please sign in to comment.