Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
52 | protected function configureDataTables() |
||
53 | { |
||
54 | $this->app['config']->set([ |
||
55 | 'datatables.engines.eloquent' => EloquentDataTable::class, |
||
56 | ]); |
||
57 | |||
58 | if (! $this->app['config']->has('datatables-buttons.stub')) { |
||
59 | $this->app['config']->set([ |
||
60 | 'datatables-buttons.stub' => '/vendor/elfsundae/laravel-datatables/src/stubs', |
||
61 | ]); |
||
62 | } |
||
63 | } |
||
64 | } |
||
65 |