Skip to content

Commit 35ba21d

Browse files
authored
Merge pull request #33 from GeneaLabs/laravel-5.5
Bring CI to green
2 parents a06f108 + dd75dc6 commit 35ba21d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/CacheKey.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ protected function getOrderByClauses() : string
6363
{
6464
$orders = collect($this->query->orders);
6565

66-
return $orders->reduce(function($carry, $order){
66+
return $orders->reduce(function ($carry, $order) {
6767
return $carry . '_orderBy_' . $order['column'] . '_' . $order['direction'];
6868
})
69-
?: '';
69+
?: '';
7070
}
7171

7272
protected function getQueryColumns(array $columns) : string

0 commit comments

Comments
 (0)