App\Lib\Test::getLog PHP Method

getLog() public method

Return the log as a HTML string.
public getLog ( $format = TRUE ) : HTML/Array
$format Split the array into HTML with linebreaks or return as-is if false.
return HTML/Array
    public function getLog($format = TRUE)
    {
        return $format ? implode($this->log, PHP_EOL) : $this->log;
    }