Devise\Pages\Collections\CollectionFields::__get PHP Method

__get() public method

This magic method is used whenever we attempt to access a field key that doesn't exist on this CollectionFields container so that we don't return null (in case that we are chaining things)
public __get ( string $name ) : FieldValue
$name string
return Devise\Pages\Fields\FieldValue
    public function __get($name)
    {
        return new FieldValue('{}');
    }