Completed
Push — master ( 7dfa13...d8a965 )
by Arjay
08:18
created
src/Processors/DataProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -261,7 +261,7 @@
 block discarded – undo
261 261
     {
262 262
         $arrayDot = array_filter(Arr::dot($row));
263 263
         foreach ($arrayDot as $key => $value) {
264
-            if (! in_array($key, $this->rawColumns)) {
264
+            if (!in_array($key, $this->rawColumns)) {
265 265
                 $arrayDot[$key] = e($value);
266 266
             }
267 267
         }
Please login to merge, or discard this patch.
src/DataTablesServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,9 +45,9 @@
 block discarded – undo
45 45
         foreach ($engines as $engine => $class) {
46 46
             $engine = Str::camel($engine);
47 47
 
48
-            if (! method_exists(DataTables::class, $engine) && ! DataTables::hasMacro($engine)) {
48
+            if (!method_exists(DataTables::class, $engine) && !DataTables::hasMacro($engine)) {
49 49
                 DataTables::macro($engine, function () use ($class) {
50
-                    if (! call_user_func_array([$class, 'canCreate'], func_get_args())) {
50
+                    if (!call_user_func_array([$class, 'canCreate'], func_get_args())) {
51 51
                         throw new \InvalidArgumentException();
52 52
                     }
53 53
 
Please login to merge, or discard this patch.