| 1 | <?php |
||
| 10 | class Console |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param string $command |
||
| 14 | * |
||
| 15 | * @return string|null |
||
| 16 | */ |
||
| 17 | public static function execute($command = '') |
||
| 18 | { |
||
| 19 | return shell_exec($command); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public static function updateDatabaseSchema() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param OutputInterface $output |
||
| 32 | */ |
||
| 33 | public static function prepare(OutputInterface $output = null) |
||
| 56 | } |
||
| 57 |