INFRA-132 - Spaces around "."
[civicrm-core.git] / CRM / Custom / Import / Controller.php
index 7720c428e8f7715acf8347ef87928cfbc2991f0f..bead20ad6d8462ec817f24485415c3bd219656ac 100644 (file)
@@ -1,9 +1,13 @@
 <?php
+
+/**
+ * Class CRM_Custom_Import_Controller
+ */
 class CRM_Custom_Import_Controller extends CRM_Core_Controller {
   /**
-   * class constructor
+   * Class constructor
    */
-  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
@@ -20,4 +24,4 @@ class CRM_Custom_Import_Controller extends CRM_Core_Controller {
     $config = CRM_Core_Config::singleton();
     $this->addActions($config->uploadDir, array('uploadFile'));
   }
-}
\ No newline at end of file
+}