Add typing to child classed
authorEileen McNaughton <emcnaughton@wikimedia.org>
Fri, 5 Aug 2022 04:02:06 +0000 (16:02 +1200)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Fri, 5 Aug 2022 04:02:06 +0000 (16:02 +1200)
CRM/Profile/Form/Dynamic.php
CRM/Profile/Form/Edit.php
CRM/Profile/Form/Search.php

index 91c98e3f269f2a560e85db847c395515334040f4..2d5c2b5c5f501507e1e26647aeb1bb05687569f2 100644 (file)
@@ -31,7 +31,7 @@ class CRM_Profile_Form_Dynamic extends CRM_Profile_Form {
    * @param
    *
    */
-  public function preProcess() {
+  public function preProcess(): void {
     if ($this->get('register')) {
       $this->_mode = CRM_Profile_Form::MODE_REGISTER;
     }
@@ -53,7 +53,7 @@ class CRM_Profile_Form_Dynamic extends CRM_Profile_Form {
    * Build the form object.
    *
    */
-  public function buildQuickForm() {
+  public function buildQuickForm(): void {
     $this->addButtons([
       [
         'type' => 'upload',
@@ -93,11 +93,4 @@ class CRM_Profile_Form_Dynamic extends CRM_Profile_Form {
     return CRM_Profile_Form::formRule($fields, $files, $form);
   }
 
-  /**
-   * Process the user submitted custom data values.
-   */
-  public function postProcess() {
-    parent::postProcess();
-  }
-
 }
index 5f1d668b2d7506cdaf0c08ea570b1df0eff7748c..02b623bb27b34b3fbc9bb2047fde5e5f5f9e92fc 100644 (file)
@@ -134,7 +134,7 @@ SELECT module,is_reserved
    * Build the form object.
    *
    */
-  public function buildQuickForm() {
+  public function buildQuickForm(): void {
     if (empty($this->_ufGroup['id'])) {
       CRM_Core_Error::statusBounce(ts('Invalid'));
     }
index c86032a7032542b677a0e7b1a127f3665bfc262d..71d9a6cc518d922da42c0db5cc29ed837e9e646f 100644 (file)
@@ -27,7 +27,7 @@ class CRM_Profile_Form_Search extends CRM_Profile_Form {
   /**
    * Pre processing work done here.
    */
-  public function preProcess() {
+  public function preProcess(): void {
     $this->_mode = CRM_Profile_Form::MODE_SEARCH;
     parent::preProcess();
   }
@@ -78,7 +78,7 @@ class CRM_Profile_Form_Search extends CRM_Profile_Form {
   /**
    * Build the form object.
    */
-  public function buildQuickForm() {
+  public function buildQuickForm(): void {
     // Is proximity search enabled for this profile?
     $proxSearch = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup',
       $this->get('gid'),
@@ -102,7 +102,7 @@ class CRM_Profile_Form_Search extends CRM_Profile_Form {
   /**
    * Post process function.
    */
-  public function postProcess() {
+  public function postProcess(): void {
   }
 
 }