| 1 | <?php |
||
| 7 | class Interpreter { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Get command response |
||
| 11 | * @param \DeGraciaMathieu\Clike\Contracts\Output $output |
||
| 12 | * @return array |
||
| 13 | */ |
||
| 14 | 3 | public static function read(Contracts\Output $output) :array |
|
| 23 | |||
| 24 | /** |
||
| 25 | * Retrieve command lines |
||
| 26 | * @param \DeGraciaMathieu\Clike\Contracts\Output $output |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | 3 | protected static function transformLines(Contracts\Output $output) :array |
|
| 35 | } |
||
| 36 |