1: | <?php |
2: | |
3: | namespace Baril\Bonsai; |
4: | |
5: | use Baril\Bonsai\Console\FixTreeCommand; |
6: | use Baril\Bonsai\Console\GrowTreeCommand; |
7: | use Baril\Bonsai\Console\ShowTreeCommand; |
8: | use Illuminate\Support\ServiceProvider; |
9: | |
10: | class BonsaiServiceProvider extends ServiceProvider |
11: | { |
12: | public function register() |
13: | { |
14: | $this->commands([ |
15: | FixTreeCommand::class, |
16: | GrowTreeCommand::class, |
17: | ShowTreeCommand::class, |
18: | ]); |
19: | } |
20: | } |
21: |