1 | <?php namespace Tequilarapido\Helpers; |
||
6 | class ShellHelper |
||
7 | { |
||
8 | const CHAR_SAMELINE = "\x0D"; |
||
9 | |||
10 | /** |
||
11 | * Progress cursors |
||
12 | * @var array |
||
13 | */ |
||
14 | static protected $cursors = array('-', '\\', '|', '/'); |
||
15 | |||
16 | /** |
||
17 | * @param $cmd |
||
18 | * @return Process |
||
19 | */ |
||
20 | public static function run($cmd) |
||
30 | |||
31 | public static function isCygwin() |
||
39 | |||
40 | public static function progress(OutputInterface $output) |
||
49 | |||
50 | public static function progressEnd(OutputInterface $output) |
||
54 | |||
55 | } |