kahlan\matcher\ToEcho::actual PHP Method

actual() public static method

Returns the output generated by the closure.
public static actual ( Closure $actual ) : string
$actual Closure The actual closure.
return string The string result.
    public static function actual($actual)
    {
        ob_start();
        $actual();
        $output = ob_get_contents();
        ob_end_clean();
        return $output;
    }