| 1 | <?php |
||
| 11 | class BaseCommand extends Command |
||
| 12 | { |
||
| 13 | use Paths; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Install development version. |
||
| 17 | * |
||
| 18 | * @var bool |
||
| 19 | */ |
||
| 20 | protected $installDev = false; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get the llum command for the environment. |
||
| 24 | * |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | protected function findLlum() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Gets dev option. |
||
| 42 | * |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | protected function getDevOption() |
||
| 49 | } |
||
| 50 |