Devise\Pages\Interpreter\Modifiers\EchoDeviseMagic::isWhiteListedFunction PHP Method

isWhiteListedFunction() protected method

For example: {{ $myvar }} becomes However for functions like route('some-route', $model->id) we don't want to be passing the magic field ever... we won't ever live update that and we shouldn't even try
protected isWhiteListedFunction ( [type] $node ) : boolean
$node [type]
return boolean
    protected function isWhiteListedFunction($node)
    {
        if ($node->name->getFirst() === 'e') {
            return true;
        }
        return false;
    }