| 1 | <?php |
||
| 25 | class BranchCommand extends AbstractCommand |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * Available arguments for this command. |
||
| 29 | * |
||
| 30 | * @var array $arguments |
||
| 31 | */ |
||
| 32 | protected $arguments = [ |
||
| 33 | 'name' => '' |
||
| 34 | ]; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | * |
||
| 39 | * @var mixed $options |
||
| 40 | */ |
||
| 41 | protected $options = [ |
||
| 42 | '--force' => false, |
||
| 43 | '--clean' => false |
||
| 44 | ]; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | 1 | public function getName() |
|
| 53 | |||
| 54 | /** |
||
| 55 | * @param string $name |
||
| 56 | * |
||
| 57 | * @return void |
||
| 58 | */ |
||
| 59 | 1 | public function setName($name) |
|
| 63 | |||
| 64 | /** |
||
| 65 | * {@inheritdoc} |
||
| 66 | */ |
||
| 67 | 1 | public function __toString() |
|
| 76 | } |
||
| 77 |