1 | <?php |
||
24 | class Updater |
||
25 | { |
||
26 | const UPDATE_COMMAND = 'update'; |
||
27 | |||
28 | /** |
||
29 | * Runs update command with given parameters. |
||
30 | * |
||
31 | * @param array $parameters Command parameters |
||
32 | * |
||
33 | * @return string Command output |
||
34 | */ |
||
35 | public static function runUpdateCommand(array $parameters = array()) |
||
41 | |||
42 | private static function runCommand(array $parameters = array()) |
||
51 | } |
||
52 |