| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | protected function registerCommands() |
||
| 46 | { |
||
| 47 | $this->app->singleton('command.langb.start', function ($app) { |
||
| 48 | return $app[MakeBundlesFolder::class]; |
||
| 49 | }); |
||
| 50 | |||
| 51 | $this->app->singleton('command.langb.new', function ($app) { |
||
| 52 | return $app[MakeNewBundleFile::class]; |
||
| 53 | }); |
||
| 54 | |||
| 55 | $this->app->singleton('command.langb.mod', function ($app) { |
||
| 56 | return $app[MakeBundleMod::class]; |
||
| 57 | }); |
||
| 58 | |||
| 59 | $this->commands('command.langb.start'); |
||
| 60 | |||
| 61 | $this->commands('command.langb.new'); |
||
| 62 | |||
| 63 | $this->commands('command.langb.mod'); |
||
| 64 | } |
||
| 65 | } |
||
| 66 |