| 1 | <?php |
||
| 23 | class UnbundleCommand extends AbstractCommand |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Available arguments for this command. |
||
| 27 | * |
||
| 28 | * @var array $arguments |
||
| 29 | */ |
||
| 30 | protected $arguments = [ |
||
| 31 | 'file' => [] |
||
| 32 | ]; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | * |
||
| 37 | * @var mixed $options |
||
| 38 | */ |
||
| 39 | protected $options = [ |
||
| 40 | '--update' => false |
||
| 41 | ]; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | 1 | public function getFile() |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @param string $file |
||
| 53 | * |
||
| 54 | * @return void |
||
| 55 | */ |
||
| 56 | 1 | public function addFile($file) |
|
| 60 | |||
| 61 | /** |
||
| 62 | * {@inheritdoc} |
||
| 63 | */ |
||
| 64 | 1 | public function __toString() |
|
| 73 | } |
||
| 74 |