| 1 | <?php |
||
| 25 | class BranchesCommand extends AbstractCommand |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * Available arguments for this command. |
||
| 29 | * |
||
| 30 | * @var array $arguments |
||
| 31 | */ |
||
| 32 | protected $arguments = []; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | * |
||
| 37 | * @var mixed $options |
||
| 38 | */ |
||
| 39 | protected $options = [ |
||
| 40 | '--active' => false, |
||
| 41 | '--closed' => false |
||
| 42 | ]; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | 1 | public function __toString() |
|
| 55 | } |
||
| 56 |