Merge pull request #4983 from colemanw/CRM-15842
[civicrm-core.git] / CRM / Group / Controller.php
index 6a1ede88100c5903a7ab1600e673d00b1359f2ef..657ca23dc032692aac47965cd0a3c1b1fab0ed5e 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -37,7 +37,7 @@ class CRM_Group_Controller extends CRM_Core_Controller {
   /**
    * 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();
   }
 
@@ -81,5 +81,5 @@ class CRM_Group_Controller extends CRM_Core_Controller {
   public function selectorName() {
     return $this->get('selectorName');
   }
-}
 
+}