Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
1 | <?php |
||
17 | public function configure() |
||
18 | { |
||
19 | $this |
||
20 | ->setName('status') |
||
21 | ->setDescription('Get delivery status from the tracking number') |
||
22 | ->setArgumentsDefinition([ |
||
23 | 'trackingNumber' => [ |
||
24 | 'description' => 'The tracking number provided by the delivery service.', |
||
25 | ], |
||
26 | ]) |
||
27 | ; |
||
28 | } |
||
29 | |||
60 |