Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 1 | protected function configure() |
|
15 | { |
||
16 | 1 | parent::configure(); |
|
17 | |||
18 | $this |
||
19 | 1 | ->setName(TeroxSubscriptionBundle::COMMAND_NAMESPACE.':expire') |
|
20 | 1 | ->setDescription('Expire a subscription') |
|
21 | 1 | ->addArgument( |
|
22 | 1 | 'reason', |
|
23 | 1 | InputArgument::OPTIONAL, |
|
24 | 1 | 'Reason of expiration', |
|
25 | 1 | 'expired' |
|
26 | ); |
||
41 |