| 1 | <?php |
||
| 16 | class LodashServiceProvider extends ServiceProvider |
||
| 17 | { |
||
| 18 | protected $commands = [ |
||
| 19 | 'command.lodash.clear-all' => \Longman\LaravelLodash\Commands\ClearAll::class, |
||
| 20 | 'command.lodash.db.clear' => \Longman\LaravelLodash\Commands\DbClear::class, |
||
| 21 | 'command.lodash.db.dump' => \Longman\LaravelLodash\Commands\DbDump::class, |
||
| 22 | 'command.lodash.db.restore' => \Longman\LaravelLodash\Commands\DbRestore::class, |
||
| 23 | 'command.lodash.log.clear' => \Longman\LaravelLodash\Commands\LogClear::class, |
||
| 24 | |||
| 25 | ]; |
||
| 26 | |||
| 27 | |||
| 28 | 3 | public function boot() |
|
| 34 | |||
| 35 | 3 | public function register() |
|
| 43 | } |
||
| 44 |