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

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

Compile Blade echos into valid PHP.
protected compileEchos ( string $value ) : string
$value string
Результат string
    protected function compileEchos($value)
    {
        $difference = strlen($this->contentTags[0]) - strlen($this->escapedTags[0]);
        if ($difference > 0) {
            return $this->compileEscapedEchos($this->compileRegularEchos($value));
        }
        return $this->compileRegularEchos($this->compileEscapedEchos($value));
    }