1 | <?php |
||
35 | class BisecCommand extends AbstractCommand |
||
36 | { |
||
37 | /** |
||
38 | * Available arguments for this command. |
||
39 | * |
||
40 | * @var array $arguments |
||
41 | */ |
||
42 | protected $arguments = []; |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | * |
||
47 | * @var mixed $options |
||
48 | */ |
||
49 | protected $options = [ |
||
50 | '--reset' => false, |
||
51 | '--good' => false, |
||
52 | '--bad' => false, |
||
53 | '--skip' => false, |
||
54 | '--extend' => false, |
||
55 | '--command' => '', |
||
56 | '--noupdate' => false |
||
57 | ]; |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | 1 | public function __toString() |
|
70 | } |
||
71 |