setUpVfsDir(); } /** * Dumps the execution of an console output to a string and returns it * * @param Console $console The current console instance * * @return string the output of the execution */ protected function dumpExecute($console) { Intercept::reset(); $console->execute(); $returnStr = Intercept::$cache; Intercept::reset(); return $returnStr; } }