1 | <?php |
||
29 | class HeadsCommand extends AbstractCommand |
||
30 | { |
||
31 | /** |
||
32 | * Available arguments for this command. |
||
33 | * |
||
34 | * @var array $arguments |
||
35 | */ |
||
36 | protected $arguments = []; |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | * |
||
41 | * @var mixed $options |
||
42 | */ |
||
43 | protected $options = [ |
||
44 | '--rev' => '', |
||
45 | '--topo' => false, |
||
46 | '--closed' => false, |
||
47 | '--template' => '' |
||
48 | ]; |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | 1 | public function __toString() |
|
61 | } |
||
62 |