Completed
Push — master ( 014bed...f221e4 )
by Arjay
02:09
created
src/DataTableAbstract.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
@@ -775,7 +775,7 @@  discard block
 block discarded – undo
775 775
             'recordsTotal'    => $this->totalRecords,
776 776
             'recordsFiltered' => 0,
777 777
             'data'            => [],
778
-            'error'           => $error ? __($error) : "Exception Message:\n\n".$exception->getMessage(),
778
+            'error'           => $error ? __($error) : "Exception Message:\n\n" . $exception->getMessage(),
779 779
         ]);
780 780
     }
781 781
 
@@ -813,7 +813,7 @@  discard block
 block discarded – undo
813 813
     protected function setupKeyword($value)
814 814
     {
815 815
         if ($this->config->isSmartSearch()) {
816
-            $keyword = '%'.$value.'%';
816
+            $keyword = '%' . $value . '%';
817 817
             if ($this->config->isWildcard()) {
818 818
                 $keyword = Helper::wildcardLikeString($value);
819 819
             }
Please login to merge, or discard this patch.