Remove empty param declarations in docblocks
authorBradley Taylor <hello@brad-taylor.co.uk>
Sat, 31 Dec 2022 23:37:26 +0000 (23:37 +0000)
committerBradley Taylor <hello@brad-taylor.co.uk>
Mon, 2 Jan 2023 19:44:00 +0000 (19:44 +0000)
14 files changed:
CRM/Case/Selector/Search.php
CRM/Event/Form/Search.php
CRM/Event/Form/Task.php
CRM/Event/Form/Task/Badge.php
CRM/Export/Form/Select.php
CRM/Mailing/BAO/Mailing.php
CRM/Mailing/Event/BAO/MailingEventQueue.php
CRM/Member/Form/Task.php
CRM/Profile/Form/Dynamic.php
CRM/Profile/Form/Edit.php
CRM/UF/Form/Inline/PreviewById.php
CRM/UF/Form/Preview.php
CRM/UF/Page/Group.php
ext/civigrant/CRM/Grant/Form/Task.php

index 0d70d739676a06ad45f1867306e7014c060c65e4..9b430eea8bfd8d86ba21bae321cfebad4d90888b 100644 (file)
@@ -244,12 +244,10 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base {
   /**
    * Returns total number of rows for the query.
    *
-   * @param
-   *
    * @return int
    *   Total number of rows
    */
-  public function getTotalCount($action) {
+  public function getTotalCount() {
     return $this->_query->searchQuery(0, 0, NULL,
       TRUE, FALSE,
       FALSE, FALSE,
index 7a2c720416284d6cb6878433ef2226161504edb7..9a8f979f1f4eb2421e0f475530267cae4de89521 100644 (file)
@@ -348,8 +348,6 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search {
    * The processing consists of using a Selector / Controller framework for getting the
    * search results.
    *
-   * @param
-   *
    * @return void
    * @throws \CRM_Core_Exception
    */
index 45c7f882bd3e2fd80ec62e0925eb8c9b3212d47a..c6d0a12fe52189e44cf13731cd62dd1f67283783 100644 (file)
@@ -43,8 +43,6 @@ class CRM_Event_Form_Task extends CRM_Core_Form_Task {
   /**
    * Build all the data structures needed to build the form.
    *
-   * @param
-   *
    * @return void
    */
   public function preProcess() {
index 501105c5c034b2f36e2a8f9c64ec1fd32881fc57..69496c959857b7e05cc2df770d5acb9eaaa25a0f 100644 (file)
@@ -37,8 +37,6 @@ class CRM_Event_Form_Task_Badge extends CRM_Event_Form_Task {
   /**
    * Build all the data structures needed to build the form.
    *
-   * @param
-   *
    * @return void
    */
   public function preProcess() {
index 6a3198f275b6dad85620412f4047d5f09d013638..b16539b2b35f0841d11ea87e6d849d253d5b060a 100644 (file)
@@ -64,8 +64,6 @@ class CRM_Export_Form_Select extends CRM_Core_Form_Task {
   /**
    * Build all the data structures needed to build the form.
    *
-   * @param
-   *
    * @return void
    */
   public function preProcess() {
index 091141ece68ea7e9f8957ae95d534888bfa1daba..e772bac2701acd2682b2f4e39053d14bf782616d 100644 (file)
@@ -2153,8 +2153,6 @@ ORDER BY   civicrm_email.is_bulkmail DESC
   /**
    * Get the count of mailings.
    *
-   * @param
-   *
    * @return int
    *   Count
    */
index 7f5a38a9c5e8604d8d95dafb2447b58ef2a52809..6b1d8b20d682b49ebe5b7442ec594ce3d070f847 100644 (file)
@@ -231,9 +231,7 @@ class CRM_Mailing_Event_BAO_MailingEventQueue extends CRM_Mailing_Event_DAO_Mail
   /**
    * Get the mailing object for this queue event instance.
    *
-   * @param
-   *
-   * @return object
+   * @return CRM_Mailing_BAO_Mailing
    *   Mailing BAO
    */
   public function &getMailing() {
index 8374e85fdf0503ef6a93ad6c634e4df58b76a739..1f86f6d5ff0af8a71ee492b4c7a4e2544cc9c686 100644 (file)
@@ -33,8 +33,6 @@ class CRM_Member_Form_Task extends CRM_Core_Form_Task {
   /**
    * Build all the data structures needed to build the form.
    *
-   * @param
-   *
    * @return void
    * @throws \CRM_Core_Exception
    */
index 2d5c2b5c5f501507e1e26647aeb1bb05687569f2..1ed2119ce0d5fe3221ecefc1ace9a4059b7d9fb2 100644 (file)
@@ -28,8 +28,6 @@ class CRM_Profile_Form_Dynamic extends CRM_Profile_Form {
   /**
    * Pre processing work done here.
    *
-   * @param
-   *
    */
   public function preProcess(): void {
     if ($this->get('register')) {
index 367848abf2b2363084f9845d0b153a5e94b8f670..4916638d5e56de45ee5c7b7bf39d9698ad409b2c 100644 (file)
@@ -35,8 +35,6 @@ class CRM_Profile_Form_Edit extends CRM_Profile_Form {
   /**
    * Pre processing work done here.
    *
-   * @param
-   *
    */
   public function preProcess() {
     $this->_mode = CRM_Profile_Form::MODE_CREATE;
index befda199d36913d68806ba00e2a048b9e208be7c..1a3f81f0356cb50b5b44c947a895310bb913f154 100644 (file)
@@ -27,8 +27,6 @@ class CRM_UF_Form_Inline_PreviewById extends CRM_UF_Form_AbstractPreview {
    *
    * gets session variables for group or field id
    *
-   * @param
-   *
    * @return void
    * @throws \CRM_Core_Exception
    */
index 822951c675a0df5e557068cbd2d447e0269a92bd..c1788f5be17b735f760251a2d7a1cfc05bafcbc7 100644 (file)
@@ -27,8 +27,6 @@ class CRM_UF_Form_Preview extends CRM_UF_Form_AbstractPreview {
    *
    * gets session variables for group or field id
    *
-   * @param
-   *
    * @return void
    */
   public function preProcess() {
index e5bb967aaea181f5845412aaae45b221e898cc67..7fa01478fc07a376f101da6475ebc10c13260b6f 100644 (file)
@@ -35,8 +35,6 @@ class CRM_UF_Page_Group extends CRM_Core_Page {
   /**
    * Get the action links for this page.
    *
-   * @param
-   *
    * @return array
    */
   public static function &actionLinks() {
@@ -286,11 +284,9 @@ class CRM_UF_Page_Group extends CRM_Core_Page {
   /**
    * Browse all uf data groups.
    *
-   * @param
-   *
    * @return void
    */
-  public function browse($action = NULL) {
+  public function browse() {
     $ufGroup = [];
     $allUFGroups = CRM_Core_BAO_UFGroup::getModuleUFGroup();
     if (empty($allUFGroups)) {
index dceba5ac5f405e79f8b6f02517c901ff442b3170..5e5cddb7c456548c7c2051dd41a46a0f839a08a6 100644 (file)
@@ -25,8 +25,6 @@ class CRM_Grant_Form_Task extends CRM_Core_Form_Task {
   /**
    * Build all the data structures needed to build the form.
    *
-   * @param
-   *
    * @return void
    */
   public function preProcess() {