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

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

Callback for compileRegularEchos, since $this is not allowed in Closures under PHP 5.3.
protected compileRegularEchosCallback ( array $matches ) : string
$matches array
Результат string
    protected function compileRegularEchosCallback($matches)
    {
        $whitespace = empty($matches[3]) ? '' : $matches[3] . $matches[3];
        return $matches[1] ? substr($matches[0], 1) : '<?php echo ' . $this->compileEchoDefaults($matches[2]) . '; ?>' . $whitespace;
    }