| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function register() |
||
| 25 | { |
||
| 26 | $this->app->singleton('command.cybertron.make.transformer', function ($app) { |
||
| 27 | return $app['lasselehtinen\Cybertron\Commands\TransformerMakeCommand']; |
||
| 28 | }); |
||
| 29 | |||
| 30 | $this->commands('command.cybertron.make.transformer'); |
||
| 31 | |||
| 32 | $this->loadViewsFrom(__DIR__ . '/Views', 'cybertron'); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |