| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1.0122 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 1 | public function register() |
|
| 23 | { |
||
| 24 | $this->app->singleton('command.api.token-key', function () { |
||
| 25 | return new ApiTokenKey; |
||
| 26 | 1 | }); |
|
| 27 | |||
| 28 | $this->app->singleton('command.assets.version', function () { |
||
| 29 | return new AssetsVersion; |
||
| 30 | 1 | }); |
|
| 31 | |||
| 32 | 1 | $this->app->singleton('command.int2string.characters', function () { |
|
| 33 | return new Int2stringCharacters; |
||
| 34 | 1 | }); |
|
| 35 | |||
| 36 | 1 | $this->commands( |
|
| 37 | 1 | 'command.api.token-key', |
|
| 38 | 1 | 'command.assets.version', |
|
| 39 | 'command.int2string.characters' |
||
| 40 | 1 | ); |
|
| 41 | 1 | } |
|
| 42 | |||
| 57 |