/**
  * @param string $propertyName Name of the property.
  * @param string $magicFieldId Name of the field in the MF.
  * @param MFType|string $magicFieldType Type of the magic field as defined in the 'MFType' class.
  */
 public function __construct($propertyName, $magicFieldId, $magicFieldType)
 {
     parent::__construct($propertyName, $magicFieldId, $magicFieldType);
 }
 /**
  * @param string $propertyName Name of the property.
  * @param string $magicFieldGroup Name of the group in the MF.
  * @param string $magicFieldId Name of the field in the MF.
  * @param MFType|string $magicFieldType Type of the magic field as defined in the 'MFType' class.
  */
 public function __construct($propertyName, $magicFieldGroup, $magicFieldId, $magicFieldType)
 {
     parent::__construct($propertyName, $magicFieldId, $magicFieldType);
     $this->magicFieldGroup = $magicFieldGroup;
 }