diff --git a/src/CacheKey.php b/src/CacheKey.php index bf2e65a..d5d2fad 100644 --- a/src/CacheKey.php +++ b/src/CacheKey.php @@ -63,10 +63,10 @@ protected function getOrderByClauses() : string { $orders = collect($this->query->orders); - return $orders->reduce(function($carry, $order){ + return $orders->reduce(function ($carry, $order) { return $carry . '_orderBy_' . $order['column'] . '_' . $order['direction']; }) - ?: ''; + ?: ''; } protected function getQueryColumns(array $columns) : string