@@ -87,7 +87,7 @@ discard block |
||
| 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 |
||
| 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 | |