| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 24 | public function register() |
||
| 25 | { |
||
| 26 | $this->app->bind('command.env:get', EnvGetCommand::class); |
||
| 27 | $this->app->bind('command.env:set', EnvSetCommand::class); |
||
| 28 | $this->app->bind('command.env:del', EnvDelCommand::class); |
||
| 29 | $this->app->bind('command.env:list', EnvListCommand::class); |
||
| 30 | |||
| 31 | $this->commands([ |
||
| 32 | 'command.env:get', |
||
| 33 | 'command.env:set', |
||
| 34 | 'command.env:del', |
||
| 35 | 'command.env:list', |
||
| 36 | ]); |
||
| 39 |