1 | <?php |
||
17 | class LodashServiceProvider extends ServiceProvider |
||
18 | { |
||
19 | protected $commands = [ |
||
20 | 'command.lodash.clear-all' => \Longman\LaravelLodash\Commands\ClearAll::class, |
||
21 | 'command.lodash.db.clear' => \Longman\LaravelLodash\Commands\DbClear::class, |
||
22 | 'command.lodash.db.dump' => \Longman\LaravelLodash\Commands\DbDump::class, |
||
23 | 'command.lodash.db.restore' => \Longman\LaravelLodash\Commands\DbRestore::class, |
||
24 | 'command.lodash.log.clear' => \Longman\LaravelLodash\Commands\LogClear::class, |
||
25 | 'command.lodash.user.add' => \Longman\LaravelLodash\Commands\UserAdd::class, |
||
26 | 'command.lodash.user.password' => \Longman\LaravelLodash\Commands\UserPassword::class, |
||
27 | |||
28 | ]; |
||
29 | |||
30 | |||
31 | 3 | public function boot() |
|
37 | |||
38 | 3 | public function register() |
|
44 | |||
45 | 3 | protected function registerCommands() |
|
53 | |||
54 | protected function registerBladeDirectives() |
||
72 | |||
73 | |||
74 | } |
||
75 |