@@ -474,7 +474,7 @@ discard block |
||
| 474 | 474 | */ |
| 475 | 475 | public function pushToBlacklist($column) |
| 476 | 476 | { |
| 477 | - if (! $this->isBlacklisted($column)) { |
|
| 477 | + if (!$this->isBlacklisted($column)) { |
|
| 478 | 478 | $this->columnDef['blacklist'][] = $column; |
| 479 | 479 | } |
| 480 | 480 | |
@@ -659,7 +659,7 @@ discard block |
||
| 659 | 659 | */ |
| 660 | 660 | protected function paginate() |
| 661 | 661 | { |
| 662 | - if ($this->request->isPaginationable() && ! $this->skipPaging) { |
|
| 662 | + if ($this->request->isPaginationable() && !$this->skipPaging) { |
|
| 663 | 663 | $this->paging(); |
| 664 | 664 | } |
| 665 | 665 | } |
@@ -766,7 +766,7 @@ discard block |
||
| 766 | 766 | $error = $this->config->get('datatables.error'); |
| 767 | 767 | $debug = $this->config->get('app.debug'); |
| 768 | 768 | |
| 769 | - if ($error === 'throw' || (! $error && ! $debug)) { |
|
| 769 | + if ($error === 'throw' || (!$error && !$debug)) { |
|
| 770 | 770 | throw new Exception($exception->getMessage(), $code = 0, $exception); |
| 771 | 771 | } |
| 772 | 772 | |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | 'recordsTotal' => $this->totalRecords, |
| 778 | 778 | 'recordsFiltered' => 0, |
| 779 | 779 | 'data' => [], |
| 780 | - 'error' => $error ? __($error) : "Exception Message:\n\n".$exception->getMessage(), |
|
| 780 | + 'error' => $error ? __($error) : "Exception Message:\n\n" . $exception->getMessage(), |
|
| 781 | 781 | ]); |
| 782 | 782 | } |
| 783 | 783 | |
@@ -815,7 +815,7 @@ discard block |
||
| 815 | 815 | protected function setupKeyword($value) |
| 816 | 816 | { |
| 817 | 817 | if ($this->config->isSmartSearch()) { |
| 818 | - $keyword = '%'.$value.'%'; |
|
| 818 | + $keyword = '%' . $value . '%'; |
|
| 819 | 819 | if ($this->config->isWildcard()) { |
| 820 | 820 | $keyword = Helper::wildcardLikeString($value); |
| 821 | 821 | } |
@@ -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)) { |