X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FForm%2FTask%2FBatch.php;h=54fd23af494b3f401d92f69d1161619fdc60c517;hb=7cdbcb16520d540f0b7c5cb43c9511374d692931;hp=c35abc9497b5a230a0a69ef1f6c803edf6012aee;hpb=e7f7aef7265627c99d27b5e9cecdfe5d3e50f7de;p=civicrm-core.git diff --git a/CRM/Event/Form/Task/Batch.php b/CRM/Event/Form/Task/Batch.php index c35abc9497..54fd23af49 100644 --- a/CRM/Event/Form/Task/Batch.php +++ b/CRM/Event/Form/Task/Batch.php @@ -67,9 +67,8 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task { * Build all the data structures needed to build the form * * @return void - * @access public */ - function preProcess() { + public function preProcess() { /* * initialize the task and row fields */ @@ -94,11 +93,10 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task { /** * Build the form object * - * @access public * * @return void */ - function buildQuickForm() { + public function buildQuickForm() { $ufGroupId = $this->get('ufGroupId'); if (!$ufGroupId) { @@ -236,11 +234,10 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task { /** * Set default values for the form. * - * @access public * * @return void */ - function setDefaultValues() { + public function setDefaultValues() { if (empty($this->_fields)) { return; } @@ -274,7 +271,6 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task { /** * Process the form after the input has been submitted and validated * - * @access public * * @return void */ @@ -355,7 +351,7 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task { * * @return Ambigous|void */ - static function updatePendingOnlineContribution($participantId, $statusId) { + public static function updatePendingOnlineContribution($participantId, $statusId) { if (!$participantId || !$statusId) { return; } @@ -401,4 +397,3 @@ class CRM_Event_Form_Task_Batch extends CRM_Event_Form_Task { return $updatedStatusId; } } -