comment fixes
[civicrm-core.git] / CRM / Event / Controller / Search.php
index da641fe2caa3746d820c09d73d48d22deac5138b..bd2c5e0c060a5de9d1cd190f0fbd539b2847cdab 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
 class CRM_Event_Controller_Search extends CRM_Core_Controller {
 
   /**
-   * Class constructor
+   * Class constructor.
+   *
+   * @param string $title
+   * @param bool|int $action
+   * @param bool $modal
    */
   public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
 
@@ -58,7 +62,6 @@ class CRM_Event_Controller_Search extends CRM_Core_Controller {
     // create and instantiate the pages
     $this->addPages($this->_stateMachine, $action);
 
-
     $session = CRM_Core_Session::singleton();
     $uploadNames = $session->get('uploadNames');
     if (!empty($uploadNames)) {
@@ -76,4 +79,5 @@ class CRM_Event_Controller_Search extends CRM_Core_Controller {
     // add all the actions
     $this->addActions($uploadDir, $uploadNames);
   }
+
 }