X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FImport%2FController.php;h=ce382e43fd903828ee66860b95c0b56ce2d70158;hb=357af5d17f9ce6542bc66142bce67190dbcf9dab;hp=066e93ff746ebbb5d311b7543b71017c93768691;hpb=39de6fd54b9843705d13cb9f70fbcc6296103670;p=civicrm-core.git diff --git a/CRM/Event/Import/Controller.php b/CRM/Event/Import/Controller.php index 066e93ff74..ce382e43fd 100644 --- a/CRM/Event/Import/Controller.php +++ b/CRM/Event/Import/Controller.php @@ -23,7 +23,7 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * @@ -35,9 +35,13 @@ class CRM_Event_Import_Controller extends CRM_Core_Controller { /** - * Class constructor + * Class constructor. + * + * @param null $title + * @param bool|int $action + * @param bool $modal */ - function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) { + public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) { parent::__construct($title, $modal); // lets get around the time limit issue if possible, CRM-2113 @@ -54,5 +58,5 @@ class CRM_Event_Import_Controller extends CRM_Core_Controller { $config = CRM_Core_Config::singleton(); $this->addActions($config->uploadDir, array('uploadFile')); } -} +}