Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
LaravelFreelancerNL authored and github-actions[bot] committed Dec 4, 2023
1 parent 5b4a906 commit eb15385
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Clauses/PruneClause.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ public function compile(QueryBuilder $queryBuilder): string

if (isset($this->pruneVariable)) {
$pruneVariable = $queryBuilder->normalizeArgument($this->pruneVariable, 'Variable');
$aql .= $pruneVariable->compile($queryBuilder).' = ';
$aql .= $pruneVariable->compile($queryBuilder) . ' = ';
}

$this->predicates = $queryBuilder->normalizePredicates($this->predicates);

$compiledPredicates = $queryBuilder->compilePredicates($this->predicates);

return $aql.rtrim($compiledPredicates);
return $aql . rtrim($compiledPredicates);
}
}

0 comments on commit eb15385

Please sign in to comment.