X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FImport%2FField.php;h=a3062a2ec0e7b5926f95837011c5701e387a074b;hb=2e04078dfdf6f71e425cd5de65434a311c8aa0eb;hp=8bba7e00f17c0566f603f5e69fa888e89c167091;hpb=8f6e04e904288b3307b8bb63acb82fbbec25a4f8;p=civicrm-core.git diff --git a/CRM/Event/Import/Field.php b/CRM/Event/Import/Field.php index 8bba7e00f1..a3062a2ec0 100644 --- a/CRM/Event/Import/Field.php +++ b/CRM/Event/Import/Field.php @@ -33,7 +33,7 @@ class CRM_Event_Import_Field { /** * Type of field - * @var enum + * @var int */ public $_type; @@ -51,13 +51,13 @@ class CRM_Event_Import_Field { /** * Value of this field - * @var object + * @var string|null */ public $_value; /** * @param string $name - * @param $title + * @param string $title * @param int $type * @param string $headerPattern * @param string $dataPattern @@ -95,8 +95,8 @@ class CRM_Event_Import_Field { switch ($this->_name) { case 'contact_id': - // note: we validate extistence of the contact in API, upon - // insert (it would be too costlty to do a db call here) + // note: we validate existence of the contact in API, upon + // insert (it would be too costly to do a db call here) return CRM_Utils_Rule::integer($this->_value); case 'register_date':