FOF30\View\Compiler\Blade::compileStatementsCallback PHP Метод

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

Callback for compileStatements, since $this is not allowed in Closures under PHP 5.3.
protected compileStatementsCallback ( $match ) : string
$match
Результат string
    protected function compileStatementsCallback($match)
    {
        if (method_exists($this, $method = 'compile' . ucfirst($match[1]))) {
            $match[0] = $this->{$method}(array_get($match, 3));
        }
        return isset($match[3]) ? $match[0] : $match[0] . $match[2];
    }