X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=CRM%2FGroup%2FController.php;h=304333ab456e64e78483883cccf0fd0b5164ff62;hb=63e9c3fda7a313515b3cade8819d2dcb43e8de3b;hp=92bf5dcb0824370e40f4ae6a09e32ee0e1f5c1b8;hpb=347185d7709adf00659d042b2fa98b93f03f2672;p=civicrm-core.git diff --git a/CRM/Group/Controller.php b/CRM/Group/Controller.php index 92bf5dcb08..304333ab45 100644 --- a/CRM/Group/Controller.php +++ b/CRM/Group/Controller.php @@ -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(); } @@ -82,4 +82,3 @@ class CRM_Group_Controller extends CRM_Core_Controller { return $this->get('selectorName'); } } -