| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | protected function registerCommands() |
||
| 35 | { |
||
| 36 | $this->app->singleton('command.pbag.make', function ($app) { |
||
| 37 | return $app['LaravelPropertyBag\Commands\PublishSettingsConfig']; |
||
| 38 | }); |
||
| 39 | |||
| 40 | $this->app->singleton('command.pbag.rules', function ($app) { |
||
| 41 | return $app['LaravelPropertyBag\Commands\PublishRulesFile']; |
||
| 42 | }); |
||
| 43 | |||
| 44 | $this->commands('command.pbag.make'); |
||
| 45 | |||
| 46 | $this->commands('command.pbag.rules'); |
||
| 47 | } |
||
| 49 |