Devise\Pages\Fields\LiveFieldValue::__get PHP Method

__get() public method

Avoids null pointer exceptions by treating this like the empty string we only ever reach this magical method when we have attempted to fetch a key that does not exist on this FieldValue object
public __get ( string $name ) : FieldValue
$name string
return FieldValue
    public function __get($name)
    {
        return $this->get($name, $this);
    }