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

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

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