minor tidy ups
[civicrm-core.git] / CRM / Group / Controller.php
index a62c48b4228c5524b4fbdb771e18cfd5faeb894f..304333ab456e64e78483883cccf0fd0b5164ff62 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -35,9 +35,9 @@
 class CRM_Group_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);
 
     $this->_stateMachine = new CRM_Group_StateMachine($this, $action);
@@ -71,7 +71,7 @@ class CRM_Group_Controller extends CRM_Core_Controller {
   /**
    * @return mixed
    */
-  function run() {
+  public function run() {
     return parent::run();
   }
 
@@ -82,4 +82,3 @@ class CRM_Group_Controller extends CRM_Core_Controller {
     return $this->get('selectorName');
   }
 }
-