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

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

Execute the user defined extensions.
protected compileExtensions ( string $value ) : string
$value string
Результат string
    protected function compileExtensions($value)
    {
        foreach ($this->extensions as $compiler) {
            $value = call_user_func($compiler, $value, $this);
        }
        return $value;
    }