| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | 3 | public function __construct( |
|
| 17 | private readonly ContainerInterface $dic |
||
| 18 | ) { |
||
| 19 | 3 | parent::__construct( |
|
| 20 | 'user:del', |
||
| 21 | 'Deletes a user' |
||
| 22 | ); |
||
| 23 | |||
| 24 | $this |
||
| 25 | 3 | ->argument( |
|
| 26 | '<userId>', |
||
| 27 | 'User Id' |
||
| 28 | ) |
||
| 29 | 3 | ->usage( |
|
| 30 | '<bold> $0 ud 666</end> <comment></end> ## Deletes the user with the id `666`<eol/>' |
||
| 31 | ); |
||
| 56 |