1 | <?php |
||
15 | class Command extends Base |
||
16 | { |
||
17 | /** |
||
18 | * Disable the ability to upgrade? |
||
19 | * |
||
20 | * @var boolean |
||
21 | */ |
||
22 | private $disableUpgrade = false; |
||
23 | |||
24 | /** |
||
25 | * The manifest file URI. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | private $manifestUri; |
||
30 | |||
31 | /** |
||
32 | * @param string $name The command name. |
||
33 | * @param boolean $disable Disable upgrading? |
||
34 | */ |
||
35 | public function __construct($name, $disable = false) |
||
41 | |||
42 | /** |
||
43 | * Sets the manifest URI. |
||
44 | * |
||
45 | * @param string $uri The URI. |
||
46 | */ |
||
47 | public function setManifestUri($uri) |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | protected function configure() |
||
80 | |||
81 | /** |
||
82 | * {@inheritdoc} |
||
83 | */ |
||
84 | protected function execute(InputInterface $input, OutputInterface $output) |
||
111 | } |
||
112 |