Devise\Pages\Interpreter\BladeEngineCompiler::__call PHP Method

__call() public method

Any calls made we proxy to the underlying compiler
public __call ( [type] $method, [type] $arguments ) : [type]
$method [type]
$arguments [type]
return [type]
    public function __call($method, $arguments)
    {
        return call_user_func_array(array($this->compiler, $method), $arguments);
    }