Merge pull request #5080 from eileenmcnaughton/comment-full-stops
[civicrm-core.git] / CRM / Upgrade / Controller.php
index 6c80c0c7714228d6ed9d0641ae5d3c984205db22..bc94a1c9d5ec51dfb6737b3e737c352c2e3e0fbf 100644 (file)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
 class CRM_Upgrade_Controller extends CRM_Core_Controller {
 
   /**
-   * Class constructor
+   * Class constructor.
+   *
+   * @param null $title
+   * @param bool|int $action
+   * @param bool $modal
    */
-  function __construct($title = NULL,
+  public function __construct(
+    $title = NULL,
     $action = CRM_Core_Action::NONE,
     $modal = TRUE
   ) {
@@ -55,5 +60,5 @@ class CRM_Upgrade_Controller extends CRM_Core_Controller {
     $config = CRM_Core_Config::singleton();
     $this->addActions();
   }
-}
 
+}