/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/TestSuite/Stub
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/TestSuite/Stub/ConsoleOutput.php (2004B)
_out[] = $line;
}
$newlines--;
while ($newlines > 0) {
$this->_out[] = '';
$newlines--;
}
return 0;
}
/**
* Get the buffered output.
*
* @return array
*/
public function messages(): array
{
return $this->_out;
}
/**
* Get the output as a string
*
* @return string
*/
public function output(): string
{
return implode("\n", $this->_out);
}
}