Devise\Pages\Interpreter\Modifiers\EchoDeviseMagic::isWhiteListedFunction PHP Метод

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

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]
Результат boolean
    protected function isWhiteListedFunction($node)
    {
        if ($node->name->getFirst() === 'e') {
            return true;
        }
        return false;
    }