@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | ); |
45 | 45 | |
46 | 46 | foreach ($methods as $method) { |
47 | - if ($replace || ! static::hasMacro($method->name)) { |
|
47 | + if ($replace || !static::hasMacro($method->name)) { |
|
48 | 48 | $method->setAccessible(true); |
49 | 49 | static::macro($method->name, $method->invoke($mixin)); |
50 | 50 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public static function __callStatic($method, $parameters) |
85 | 85 | { |
86 | - if (! static::hasMacro($method)) { |
|
86 | + if (!static::hasMacro($method)) { |
|
87 | 87 | throw new BadMethodCallException(sprintf( |
88 | 88 | 'Method %s::%s does not exist.', static::class, $method |
89 | 89 | )); |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | */ |
110 | 110 | public function __call($method, $parameters) |
111 | 111 | { |
112 | - if (! static::hasMacro($method)) { |
|
112 | + if (!static::hasMacro($method)) { |
|
113 | 113 | throw new BadMethodCallException(sprintf( |
114 | 114 | 'Method %s::%s does not exist.', static::class, $method |
115 | 115 | )); |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | public function previousCursor() |
152 | 152 | { |
153 | 153 | if (is_null($this->cursor) || |
154 | - ($this->cursor->pointsToPreviousItems() && ! $this->hasMore)) { |
|
154 | + ($this->cursor->pointsToPreviousItems() && !$this->hasMore)) { |
|
155 | 155 | return null; |
156 | 156 | } |
157 | 157 | |
@@ -169,8 +169,8 @@ discard block |
||
169 | 169 | */ |
170 | 170 | public function nextCursor() |
171 | 171 | { |
172 | - if ((is_null($this->cursor) && ! $this->hasMore) || |
|
173 | - (! is_null($this->cursor) && $this->cursor->pointsToNextItems() && ! $this->hasMore)) { |
|
172 | + if ((is_null($this->cursor) && !$this->hasMore) || |
|
173 | + (!is_null($this->cursor) && $this->cursor->pointsToNextItems() && !$this->hasMore)) { |
|
174 | 174 | return null; |
175 | 175 | } |
176 | 176 | |
@@ -205,13 +205,13 @@ discard block |
||
205 | 205 | { |
206 | 206 | return collect($this->parameters) |
207 | 207 | ->flip() |
208 | - ->map(function ($_, $parameterName) use ($item) { |
|
208 | + ->map(function($_, $parameterName) use ($item) { |
|
209 | 209 | if ($item instanceof JsonResource) { |
210 | 210 | $item = $item->resource; |
211 | 211 | } |
212 | 212 | |
213 | 213 | if ($item instanceof Model && |
214 | - ! is_null($parameter = $this->getPivotParameterForItem($item, $parameterName))) { |
|
214 | + !is_null($parameter = $this->getPivotParameterForItem($item, $parameterName))) { |
|
215 | 215 | return $parameter; |
216 | 216 | } elseif ($item instanceof ArrayAccess || is_array($item)) { |
217 | 217 | return $this->ensureParameterIsPrimitive( |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | */ |
322 | 322 | public function withQueryString() |
323 | 323 | { |
324 | - if (! is_null($query = Paginator::resolveQueryString())) { |
|
324 | + if (!is_null($query = Paginator::resolveQueryString())) { |
|
325 | 325 | return $this->appends($query); |
326 | 326 | } |
327 | 327 |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function parameter(string $parameterName) |
45 | 45 | { |
46 | - if (! array_key_exists($parameterName, $this->parameters)) { |
|
46 | + if (!array_key_exists($parameterName, $this->parameters)) { |
|
47 | 47 | throw new UnexpectedValueException("Unable to find parameter [{$parameterName}] in pagination item."); |
48 | 48 | } |
49 | 49 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | public function parameters(array $parameterNames) |
60 | 60 | { |
61 | - return collect($parameterNames)->map(function ($parameterName) { |
|
61 | + return collect($parameterNames)->map(function($parameterName) { |
|
62 | 62 | return $this->parameter($parameterName); |
63 | 63 | })->toArray(); |
64 | 64 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function pointsToPreviousItems() |
82 | 82 | { |
83 | - return ! $this->pointsToNextItems; |
|
83 | + return !$this->pointsToNextItems; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | public static function fromEncoded($encodedString) |
115 | 115 | { |
116 | - if (is_null($encodedString) || ! is_string($encodedString)) { |
|
116 | + if (is_null($encodedString) || !is_string($encodedString)) { |
|
117 | 117 | return null; |
118 | 118 | } |
119 | 119 |
@@ -101,12 +101,12 @@ |
||
101 | 101 | */ |
102 | 102 | public function linkCollection() |
103 | 103 | { |
104 | - return collect($this->elements())->flatMap(function ($item) { |
|
105 | - if (! is_array($item)) { |
|
104 | + return collect($this->elements())->flatMap(function($item) { |
|
105 | + if (!is_array($item)) { |
|
106 | 106 | return [['url' => null, 'label' => '...', 'active' => false]]; |
107 | 107 | } |
108 | 108 | |
109 | - return collect($item)->map(function ($url, $page) { |
|
109 | + return collect($item)->map(function($url, $page) { |
|
110 | 110 | return [ |
111 | 111 | 'url' => $url, |
112 | 112 | 'label' => (string) $page, |
@@ -75,7 +75,7 @@ |
||
75 | 75 | { |
76 | 76 | $window = $onEachSide + 4; |
77 | 77 | |
78 | - if (! $this->hasPages()) { |
|
78 | + if (!$this->hasPages()) { |
|
79 | 79 | return ['first' => null, 'slider' => null, 'last' => null]; |
80 | 80 | } |
81 | 81 |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | $this->items = $this->items->slice(0, $this->perPage); |
60 | 60 | |
61 | - if (! is_null($this->cursor) && $this->cursor->pointsToPreviousItems()) { |
|
61 | + if (!is_null($this->cursor) && $this->cursor->pointsToPreviousItems()) { |
|
62 | 62 | $this->items = $this->items->reverse()->values(); |
63 | 63 | } |
64 | 64 | } |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | public function hasMorePages() |
98 | 98 | { |
99 | 99 | return (is_null($this->cursor) && $this->hasMore) || |
100 | - (! is_null($this->cursor) && $this->cursor->pointsToNextItems() && $this->hasMore) || |
|
101 | - (! is_null($this->cursor) && $this->cursor->pointsToPreviousItems()); |
|
100 | + (!is_null($this->cursor) && $this->cursor->pointsToNextItems() && $this->hasMore) || |
|
101 | + (!is_null($this->cursor) && $this->cursor->pointsToPreviousItems()); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | */ |
109 | 109 | public function hasPages() |
110 | 110 | { |
111 | - return ! $this->onFirstPage() || $this->hasMorePages(); |
|
111 | + return !$this->onFirstPage() || $this->hasMorePages(); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | public function onFirstPage() |
120 | 120 | { |
121 | - return is_null($this->cursor) || ($this->cursor->pointsToPreviousItems() && ! $this->hasMore); |
|
121 | + return is_null($this->cursor) || ($this->cursor->pointsToPreviousItems() && !$this->hasMore); |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | */ |
155 | 155 | public function getUrlRange($start, $end) |
156 | 156 | { |
157 | - return collect(range($start, $end))->mapWithKeys(function ($page) { |
|
157 | + return collect(range($start, $end))->mapWithKeys(function($page) { |
|
158 | 158 | return [$page => $this->url($page)]; |
159 | 159 | })->all(); |
160 | 160 | } |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | */ |
387 | 387 | public function onLastPage() |
388 | 388 | { |
389 | - return ! $this->hasMorePages(); |
|
389 | + return !$this->hasMorePages(); |
|
390 | 390 | } |
391 | 391 | |
392 | 392 | /** |
@@ -12,15 +12,15 @@ discard block |
||
12 | 12 | */ |
13 | 13 | public static function resolveUsing($app) |
14 | 14 | { |
15 | - Paginator::viewFactoryResolver(function () use ($app) { |
|
15 | + Paginator::viewFactoryResolver(function() use ($app) { |
|
16 | 16 | return $app['view']; |
17 | 17 | }); |
18 | 18 | |
19 | - Paginator::currentPathResolver(function () use ($app) { |
|
19 | + Paginator::currentPathResolver(function() use ($app) { |
|
20 | 20 | return $app['request']->url(); |
21 | 21 | }); |
22 | 22 | |
23 | - Paginator::currentPageResolver(function ($pageName = 'page') use ($app) { |
|
23 | + Paginator::currentPageResolver(function($pageName = 'page') use ($app) { |
|
24 | 24 | $page = $app['request']->input($pageName); |
25 | 25 | |
26 | 26 | if (filter_var($page, FILTER_VALIDATE_INT) !== false && (int) $page >= 1) { |
@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | return 1; |
31 | 31 | }); |
32 | 32 | |
33 | - Paginator::queryStringResolver(function () use ($app) { |
|
33 | + Paginator::queryStringResolver(function() use ($app) { |
|
34 | 34 | return $app['request']->query(); |
35 | 35 | }); |
36 | 36 | |
37 | - CursorPaginator::currentCursorResolver(function ($cursorName = 'cursor') use ($app) { |
|
37 | + CursorPaginator::currentCursorResolver(function($cursorName = 'cursor') use ($app) { |
|
38 | 38 | return Cursor::fromEncoded($app['request']->input($cursorName)); |
39 | 39 | }); |
40 | 40 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | foreach ($array as $values) { |
52 | 52 | if ($values instanceof Collection) { |
53 | 53 | $values = $values->all(); |
54 | - } elseif (! is_array($values)) { |
|
54 | + } elseif (!is_array($values)) { |
|
55 | 55 | continue; |
56 | 56 | } |
57 | 57 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | $results = []; |
112 | 112 | |
113 | 113 | foreach ($array as $key => $value) { |
114 | - if (is_array($value) && ! empty($value)) { |
|
114 | + if (is_array($value) && !empty($value)) { |
|
115 | 115 | $results = array_merge($results, static::dot($value, $prepend.$key.'.')); |
116 | 116 | } else { |
117 | 117 | $results[$prepend.$key] = $value; |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | foreach ($array as $item) { |
233 | 233 | $item = $item instanceof Collection ? $item->all() : $item; |
234 | 234 | |
235 | - if (! is_array($item)) { |
|
235 | + if (!is_array($item)) { |
|
236 | 236 | $result[] = $item; |
237 | 237 | } else { |
238 | 238 | $values = $depth === 1 |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | */ |
303 | 303 | public static function get($array, $key, $default = null) |
304 | 304 | { |
305 | - if (! static::accessible($array)) { |
|
305 | + if (!static::accessible($array)) { |
|
306 | 306 | return value($default); |
307 | 307 | } |
308 | 308 | |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | { |
341 | 341 | $keys = (array) $keys; |
342 | 342 | |
343 | - if (! $array || $keys === []) { |
|
343 | + if (!$array || $keys === []) { |
|
344 | 344 | return false; |
345 | 345 | } |
346 | 346 | |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | |
379 | 379 | $keys = (array) $keys; |
380 | 380 | |
381 | - if (! $array) { |
|
381 | + if (!$array) { |
|
382 | 382 | return false; |
383 | 383 | } |
384 | 384 | |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | */ |
421 | 421 | public static function isList($array) |
422 | 422 | { |
423 | - return ! self::isAssoc($array); |
|
423 | + return !self::isAssoc($array); |
|
424 | 424 | } |
425 | 425 | |
426 | 426 | /** |
@@ -609,7 +609,7 @@ discard block |
||
609 | 609 | // If the key doesn't exist at this depth, we will just create an empty array |
610 | 610 | // to hold the next value, allowing us to create the arrays to hold final |
611 | 611 | // values at the correct depth. Then we'll keep digging into the array. |
612 | - if (! isset($array[$key]) || ! is_array($array[$key])) { |
|
612 | + if (!isset($array[$key]) || !is_array($array[$key])) { |
|
613 | 613 | $array[$key] = []; |
614 | 614 | } |
615 | 615 | |
@@ -725,8 +725,8 @@ discard block |
||
725 | 725 | */ |
726 | 726 | public static function whereNotNull($array) |
727 | 727 | { |
728 | - return static::where($array, function ($value) { |
|
729 | - return ! is_null($value); |
|
728 | + return static::where($array, function($value) { |
|
729 | + return !is_null($value); |
|
730 | 730 | }); |
731 | 731 | } |
732 | 732 |