Completed
Pull Request — master (#1488)
by Elf
01:39
created
src/DataTables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     {
88 88
         $class = class_exists($engine) ? $engine : Arr::get(config('datatables.engines'), $engine);
89 89
 
90
-        if (! $class) {
90
+        if (!$class) {
91 91
             throw new Exception("Unsupported DataTable engine [$engine]");
92 92
         }
93 93
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      */
133 133
     public function getHtmlBuilder()
134 134
     {
135
-        if (! class_exists('\Yajra\DataTables\Html\Builder')) {
135
+        if (!class_exists('\Yajra\DataTables\Html\Builder')) {
136 136
             throw new \Exception('Please install yajra/laravel-datatables-html to be able to use this function.');
137 137
         }
138 138
 
Please login to merge, or discard this patch.