@@ -41,8 +41,8 @@ |
||
41 | 41 | */ |
42 | 42 | public function rowValue($attribute, $template) |
43 | 43 | { |
44 | - if (! empty($template)) { |
|
45 | - if (! is_callable($template) && Arr::get($this->data, $template)) { |
|
44 | + if (!empty($template)) { |
|
45 | + if (!is_callable($template) && Arr::get($this->data, $template)) { |
|
46 | 46 | $this->data[$attribute] = Arr::get($this->data, $template); |
47 | 47 | } else { |
48 | 48 | $this->data[$attribute] = Helper::compileContent($template, $this->data, $this->row); |
@@ -237,7 +237,7 @@ |
||
237 | 237 | { |
238 | 238 | $arrayDot = array_filter(array_dot($row)); |
239 | 239 | foreach ($arrayDot as $key => $value) { |
240 | - if (! in_array($key, $this->rawColumns)) { |
|
240 | + if (!in_array($key, $this->rawColumns)) { |
|
241 | 241 | $arrayDot[$key] = e($value); |
242 | 242 | } |
243 | 243 | } |
@@ -450,7 +450,7 @@ |
||
450 | 450 | /** |
451 | 451 | * Prepare count query builder. |
452 | 452 | * |
453 | - * @return \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder |
|
453 | + * @return string |
|
454 | 454 | */ |
455 | 455 | protected function prepareCountQuery() |
456 | 456 | { |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | */ |
113 | 113 | protected function prepareQuery() |
114 | 114 | { |
115 | - if (! $this->prepared) { |
|
115 | + if (!$this->prepared) { |
|
116 | 116 | $this->totalRecords = $this->totalCount(); |
117 | 117 | |
118 | 118 | if ($this->totalRecords) { |
@@ -203,10 +203,10 @@ discard block |
||
203 | 203 | { |
204 | 204 | $builder = clone $this->query; |
205 | 205 | |
206 | - if (! $this->isComplexQuery($builder)) { |
|
206 | + if (!$this->isComplexQuery($builder)) { |
|
207 | 207 | $row_count = $this->wrap('row_count'); |
208 | 208 | $builder->select($this->connection->raw("'1' as {$row_count}")); |
209 | - if (! $this->keepSelectBindings) { |
|
209 | + if (!$this->keepSelectBindings) { |
|
210 | 210 | $builder->setBindings([], 'select'); |
211 | 211 | } |
212 | 212 | } |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | $columns = $this->request->columns(); |
279 | 279 | |
280 | 280 | foreach ($columns as $index => $column) { |
281 | - if (! $this->request->isColumnSearchable($index)) { |
|
281 | + if (!$this->request->isColumnSearchable($index)) { |
|
282 | 282 | continue; |
283 | 283 | } |
284 | 284 | |
@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | */ |
358 | 358 | protected function getBaseQueryBuilder($instance = null) |
359 | 359 | { |
360 | - if (! $instance) { |
|
360 | + if (!$instance) { |
|
361 | 361 | $instance = $this->query; |
362 | 362 | } |
363 | 363 | |
@@ -406,18 +406,18 @@ discard block |
||
406 | 406 | { |
407 | 407 | switch ($this->connection->getDriverName()) { |
408 | 408 | case 'oracle': |
409 | - $sql = ! $this->config->isCaseInsensitive() |
|
409 | + $sql = !$this->config->isCaseInsensitive() |
|
410 | 410 | ? 'REGEXP_LIKE( ' . $column . ' , ? )' |
411 | 411 | : 'REGEXP_LIKE( LOWER(' . $column . ') , ?, \'i\' )'; |
412 | 412 | break; |
413 | 413 | |
414 | 414 | case 'pgsql': |
415 | 415 | $column = $this->castColumn($column); |
416 | - $sql = ! $this->config->isCaseInsensitive() ? $column . ' ~ ?' : $column . ' ~* ? '; |
|
416 | + $sql = !$this->config->isCaseInsensitive() ? $column . ' ~ ?' : $column . ' ~* ? '; |
|
417 | 417 | break; |
418 | 418 | |
419 | 419 | default: |
420 | - $sql = ! $this->config->isCaseInsensitive() |
|
420 | + $sql = !$this->config->isCaseInsensitive() |
|
421 | 421 | ? $column . ' REGEXP ?' |
422 | 422 | : 'LOWER(' . $column . ') REGEXP ?'; |
423 | 423 | $keyword = Str::lower($keyword); |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | { |
478 | 478 | if (strpos($column, '.') === false) { |
479 | 479 | $q = $this->getBaseQueryBuilder($query); |
480 | - if (! $q->from instanceof Expression) { |
|
480 | + if (!$q->from instanceof Expression) { |
|
481 | 481 | $column = $q->from . '.' . $column; |
482 | 482 | } |
483 | 483 | } |
@@ -634,7 +634,7 @@ discard block |
||
634 | 634 | return $orderable; |
635 | 635 | }) |
636 | 636 | ->reject(function ($orderable) { |
637 | - return $this->isBlacklisted($orderable['name']) && ! $this->hasOrderColumn($orderable['name']); |
|
637 | + return $this->isBlacklisted($orderable['name']) && !$this->hasOrderColumn($orderable['name']); |
|
638 | 638 | }) |
639 | 639 | ->each(function ($orderable) { |
640 | 640 | $column = $this->resolveRelationColumn($orderable['name']); |
@@ -702,7 +702,7 @@ discard block |
||
702 | 702 | return $this->getColumnName($index); |
703 | 703 | }) |
704 | 704 | ->reject(function ($column) { |
705 | - return $this->isBlacklisted($column) && ! $this->hasFilterColumn($column); |
|
705 | + return $this->isBlacklisted($column) && !$this->hasFilterColumn($column); |
|
706 | 706 | }) |
707 | 707 | ->each(function ($column) use ($keyword, $query) { |
708 | 708 | if ($this->hasFilterColumn($column)) { |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! function_exists('config_path')) { |
|
3 | +if (!function_exists('config_path')) { |
|
4 | 4 | /** |
5 | 5 | * Get the configuration path. |
6 | 6 | * |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | } |
14 | 14 | } |
15 | 15 | |
16 | -if (! function_exists('public_path')) { |
|
16 | +if (!function_exists('public_path')) { |
|
17 | 17 | /** |
18 | 18 | * Return the path to public dir. |
19 | 19 | * |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! function_exists('datatables')) { |
|
3 | +if (!function_exists('datatables')) { |
|
4 | 4 | /** |
5 | 5 | * Helper to make a new DataTable instance from source. |
6 | 6 | * Or return the factory if source is not set. |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public function orderableColumns() |
92 | 92 | { |
93 | - if (! $this->isOrderable()) { |
|
93 | + if (!$this->isOrderable()) { |
|
94 | 94 | return []; |
95 | 95 | } |
96 | 96 | |
@@ -220,8 +220,8 @@ discard block |
||
220 | 220 | */ |
221 | 221 | public function isPaginationable() |
222 | 222 | { |
223 | - return ! is_null($this->request->input('start')) && |
|
224 | - ! is_null($this->request->input('length')) && |
|
223 | + return !is_null($this->request->input('start')) && |
|
224 | + !is_null($this->request->input('length')) && |
|
225 | 225 | $this->request->input('length') != -1; |
226 | 226 | } |
227 | 227 | } |
@@ -134,7 +134,7 @@ |
||
134 | 134 | */ |
135 | 135 | public function getHtmlBuilder() |
136 | 136 | { |
137 | - if (! class_exists('\Yajra\DataTables\Html\Builder')) { |
|
137 | + if (!class_exists('\Yajra\DataTables\Html\Builder')) { |
|
138 | 138 | throw new \Exception('Please install yajra/laravel-datatables-html to be able to use this function.'); |
139 | 139 | } |
140 | 140 |
@@ -129,7 +129,6 @@ |
||
129 | 129 | /** |
130 | 130 | * DataTables using Collection. |
131 | 131 | * |
132 | - * @param \Illuminate\Http\Resources\Json\AnonymousResourceCollection|array $collection |
|
133 | 132 | * @return DataTableAbstract|ApiResourceDataTable |
134 | 133 | */ |
135 | 134 | public function resource($resource) |
@@ -44,9 +44,9 @@ |
||
44 | 44 | foreach ($engines as $engine => $class) { |
45 | 45 | $engine = camel_case($engine); |
46 | 46 | |
47 | - if (! method_exists(DataTables::class, $engine) && ! DataTables::hasMacro($engine)) { |
|
47 | + if (!method_exists(DataTables::class, $engine) && !DataTables::hasMacro($engine)) { |
|
48 | 48 | DataTables::macro($engine, function () use ($class) { |
49 | - if (! call_user_func_array([$class, 'canCreate'], func_get_args())) { |
|
49 | + if (!call_user_func_array([$class, 'canCreate'], func_get_args())) { |
|
50 | 50 | throw new \InvalidArgumentException(); |
51 | 51 | } |
52 | 52 |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | */ |
141 | 141 | public static function getOrMethod($method) |
142 | 142 | { |
143 | - if (! Str::contains(Str::lower($method), 'or')) { |
|
143 | + if (!Str::contains(Str::lower($method), 'or')) { |
|
144 | 144 | return 'or' . ucfirst($method); |
145 | 145 | } |
146 | 146 | |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | { |
257 | 257 | $matches = explode(' as ', Str::lower($str)); |
258 | 258 | |
259 | - if (! empty($matches)) { |
|
259 | + if (!empty($matches)) { |
|
260 | 260 | if ($wantsAlias) { |
261 | 261 | return array_pop($matches); |
262 | 262 | } |