League\CLImate\TerminalObject\Helper\Art::parse PHP Метод

parse() защищенный Метод

Parse the contents of the file and return each line
protected parse ( string $path ) : array
$path string
Результат array
    protected function parse($path)
    {
        $output = file_get_contents($path);
        $output = explode("\n", $output);
        $output = array_map('rtrim', $output);
        return $output;
    }