Completed
Push — tests ( 5717c7...cc7532 )
by Ravinder
19:57
created
includes/admin/reporting/tools/class-give-tools-recount-all-stats.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 	 * @since  1.5
51 51
 	 * @global object $wpdb Used to query the database using the WordPress
52 52
 	 *                      Database API
53
-	 * @return array $data The data for the CSV file
53
+	 * @return boolean $data The data for the CSV file
54 54
 	 */
55 55
 	public function get_data() {
56 56
 		global $wpdb;
Please login to merge, or discard this patch.
includes/admin/reporting/tools/class-give-tools-recount-customer-stats.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 	 * @since  1.5
51 51
 	 * @global object $wpdb Used to query the database using the WordPress
52 52
 	 *                      Database API
53
-	 * @return array $data The data for the CSV file
53
+	 * @return boolean $data The data for the CSV file
54 54
 	 */
55 55
 	public function get_data() {
56 56
 		global $wpdb;
Please login to merge, or discard this patch.
includes/admin/reporting/tools/class-give-tools-recount-form-stats.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 	 * @since  1.5
51 51
 	 * @global object $wpdb Used to query the database using the WordPress
52 52
 	 *                      Database API
53
-	 * @return array $data The data for the CSV file
53
+	 * @return boolean $data The data for the CSV file
54 54
 	 */
55 55
 	public function get_data() {
56 56
 		global $wpdb;
Please login to merge, or discard this patch.
includes/admin/reporting/tools/class-give-tools-recount-income.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 	 * @since  1.5
51 51
 	 * @global object $wpdb Used to query the database using the WordPress
52 52
 	 *                      Database API
53
-	 * @return array $data The data for the CSV file
53
+	 * @return boolean $data The data for the CSV file
54 54
 	 */
55 55
 	public function get_data() {
56 56
 		global $wpdb;
Please login to merge, or discard this patch.
admin/reporting/tools/class-give-tools-recount-single-customer-stats.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 	 * @since  1.5
51 51
 	 * @global object $wpdb Used to query the database using the WordPress
52 52
 	 *                      Database API
53
-	 * @return array $data The data for the CSV file
53
+	 * @return boolean $data The data for the CSV file
54 54
 	 */
55 55
 	public function get_data() {
56 56
 		global $wpdb;
Please login to merge, or discard this patch.
includes/admin/settings/class-settings-cmb2-backward-compatibility.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 		 *
86 86
 		 * @since  1.8
87 87
 		 *
88
-		 * @param  $setting_tab
88
+		 * @param  string $setting_tab
89 89
 		 *
90 90
 		 * @return string
91 91
 		 */
Please login to merge, or discard this patch.
includes/admin/shortcodes/class-shortcode-button.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
 	/**
114 114
 	 * Adds the "Donation Form" button above the TinyMCE Editor on add/edit screens.
115 115
 	 *
116
-	 * @return string|bool
116
+	 * @return false|null
117 117
 	 *
118 118
 	 * @since 1.0
119 119
 	 */
Please login to merge, or discard this patch.
includes/formatting.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
  * @param $field_args
226 226
  * @param $field
227 227
  *
228
- * @return bool
228
+ * @return false|null
229 229
  */
230 230
 function give_format_admin_multilevel_amount( $field_args, $field ) {
231 231
 
Please login to merge, or discard this patch.
includes/forms/template.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
  *
22 22
  * @param  array $args An array of form arguments.
23 23
  *
24
- * @return string Donation form.
24
+ * @return false|null Donation form.
25 25
  */
26 26
 function give_get_donation_form( $args = array() ) {
27 27
 
@@ -1466,7 +1466,7 @@  discard block
 block discarded – undo
1466 1466
  *
1467 1467
  * @param  int $form_id The form ID.
1468 1468
  *
1469
- * @return bool
1469
+ * @return false|null
1470 1470
  */
1471 1471
 function give_terms_agreement( $form_id ) {
1472 1472
 	$form_option = get_post_meta( $form_id, '_give_terms_option', true );
@@ -1675,7 +1675,7 @@  discard block
 block discarded – undo
1675 1675
  * @param  int   $form_id The form ID.
1676 1676
  * @param  array $args    An array of form arguments.
1677 1677
  *
1678
- * @return mixed
1678
+ * @return boolean
1679 1679
  */
1680 1680
 function give_show_goal_progress( $form_id, $args ) {
1681 1681
 
@@ -1694,7 +1694,7 @@  discard block
 block discarded – undo
1694 1694
  * Get form content position.
1695 1695
  *
1696 1696
  * @since  1.8
1697
- * @param  $form_id
1697
+ * @param  integer $form_id
1698 1698
  * @param  $args
1699 1699
  * @return mixed|string
1700 1700
  */
@@ -1729,7 +1729,7 @@  discard block
 block discarded – undo
1729 1729
  * @param  int   $form_id The form ID.
1730 1730
  * @param  array $args    An array of form arguments.
1731 1731
  *
1732
- * @return void|bool
1732
+ * @return false|null
1733 1733
  */
1734 1734
 function give_form_content( $form_id, $args ) {
1735 1735
 
Please login to merge, or discard this patch.