Completed
Pull Request — master (#1488)
by Elf
02:08
created
src/DataTables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
         foreach (config('datatables.builders') as $type => $engine) {
70 70
             if ($source instanceof $type) {
71
-                if (! isset($tmpType) || is_subclass_of($type, $tmpType)) {
71
+                if (!isset($tmpType) || is_subclass_of($type, $tmpType)) {
72 72
                     $tmpType = $type;
73 73
                     $result = $engine;
74 74
                 }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      */
134 134
     public function getHtmlBuilder()
135 135
     {
136
-        if (! class_exists('\Yajra\DataTables\Html\Builder')) {
136
+        if (!class_exists('\Yajra\DataTables\Html\Builder')) {
137 137
             throw new \Exception('Please install yajra/laravel-datatables-html to be able to use this function.');
138 138
         }
139 139
 
Please login to merge, or discard this patch.