Devise\Support\Framework::__get PHP Метод

__get() публичный Метод

Magic method so we can call $this->Config instead of $this->Config()
public __get ( $name ) : mixed
$name
Результат mixed
    public function __get($name)
    {
        $this->{$name} = $this->resolveProperty($name);
        return $this->{$name};
    }