@@ -113,7 +113,7 @@ |
||
| 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 | */ |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | * @param $end_date string|bool The end date for which we'd like to filter our sale stats. If false, we'll use the default end date of `this_month` |
| 37 | 37 | * @param $status string|array The sale status(es) to count. Only valid when retrieving global stats |
| 38 | 38 | * |
| 39 | - * @return float|int Total amount of donations based on the passed arguments. |
|
| 39 | + * @return string Total amount of donations based on the passed arguments. |
|
| 40 | 40 | */ |
| 41 | 41 | public function get_sales( $form_id = 0, $start_date = false, $end_date = false, $status = 'publish' ) { |
| 42 | 42 | |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | * @param $end_date string|bool The end date for which we'd like to filter the donations stats. If false, method will use the default end date of `this_month`. |
| 100 | 100 | * @param $gateway_id string|bool The gateway to get earnings for such as 'paypal' or 'stripe'. |
| 101 | 101 | * |
| 102 | - * @return float|int Total amount of donations based on the passed arguments. |
|
| 102 | + * @return string Total amount of donations based on the passed arguments. |
|
| 103 | 103 | */ |
| 104 | 104 | public function get_earnings( $form_id = 0, $start_date = false, $end_date = false, $gateway_id = false ) { |
| 105 | 105 | |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | * @param $end_date string|bool The end date for which we'd like to filter our sale stats. If false, we'll use the default end date of `this_month` |
| 220 | 220 | * @param $gateway_id string|bool The gateway to get earnings for such as 'paypal' or 'stripe' |
| 221 | 221 | * |
| 222 | - * @return float|int Total amount of donations based on the passed arguments. |
|
| 222 | + * @return string Total amount of donations based on the passed arguments. |
|
| 223 | 223 | */ |
| 224 | 224 | public function get_earnings_cache_key( $form_id = 0, $start_date = false, $end_date = false, $gateway_id = false ) { |
| 225 | 225 | |
@@ -98,7 +98,7 @@ |
||
| 98 | 98 | * |
| 99 | 99 | * @since 1.8 |
| 100 | 100 | * |
| 101 | - * @return bool |
|
| 101 | + * @return false|null |
|
| 102 | 102 | */ |
| 103 | 103 | function give_redirect_to_clean_url_admin_pages() { |
| 104 | 104 | // Give admin pages. |
@@ -565,7 +565,7 @@ discard block |
||
| 565 | 565 | * |
| 566 | 566 | * @since 1.6.3 |
| 567 | 567 | * |
| 568 | - * @param $pending_reason |
|
| 568 | + * @param string $pending_reason |
|
| 569 | 569 | * |
| 570 | 570 | * @return string |
| 571 | 571 | */ |
@@ -642,7 +642,7 @@ discard block |
||
| 642 | 642 | * @param int $payment_id Payment ID |
| 643 | 643 | * @param array $payment_data Array of payment data. |
| 644 | 644 | * |
| 645 | - * @return mixed|string |
|
| 645 | + * @return string |
|
| 646 | 646 | */ |
| 647 | 647 | function give_build_paypal_url( $payment_id, $payment_data ) { |
| 648 | 648 | // Only send to PayPal if the pending payment is created successfully. |
@@ -157,7 +157,7 @@ |
||
| 157 | 157 | * |
| 158 | 158 | * @access public |
| 159 | 159 | * @since 1.0 |
| 160 | - * @return mixed string If search is present, false otherwise |
|
| 160 | + * @return string|false string If search is present, false otherwise |
|
| 161 | 161 | */ |
| 162 | 162 | public function get_search() { |
| 163 | 163 | return ! empty( $_GET['s'] ) ? urldecode( trim( $_GET['s'] ) ) : false; |
@@ -232,7 +232,7 @@ |
||
| 232 | 232 | * @since 1.0 |
| 233 | 233 | * @access public |
| 234 | 234 | * |
| 235 | - * @return bool |
|
| 235 | + * @return null|boolean |
|
| 236 | 236 | */ |
| 237 | 237 | public function check_for_token() { |
| 238 | 238 | |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | * @uses api_request() |
| 78 | 78 | * |
| 79 | 79 | * @param array $_transient_data Update array build by WordPress. |
| 80 | - * @return array Modified update array with custom plugin data. |
|
| 80 | + * @return stdClass Modified update array with custom plugin data. |
|
| 81 | 81 | */ |
| 82 | 82 | public function check_update( $_transient_data ) { |
| 83 | 83 | |
@@ -205,7 +205,7 @@ |
||
| 205 | 205 | * |
| 206 | 206 | * @param bool $force If set to true then all cached values will be delete instead of only expired |
| 207 | 207 | * |
| 208 | - * @return bool |
|
| 208 | + * @return false|null |
|
| 209 | 209 | */ |
| 210 | 210 | public static function delete_all_expired( $force = false ) { |
| 211 | 211 | global $wpdb; |
@@ -21,7 +21,7 @@ discard block |
||
| 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 | |
@@ -1470,7 +1470,7 @@ discard block |
||
| 1470 | 1470 | * |
| 1471 | 1471 | * @param int $form_id The form ID. |
| 1472 | 1472 | * |
| 1473 | - * @return bool |
|
| 1473 | + * @return false|null |
|
| 1474 | 1474 | */ |
| 1475 | 1475 | function give_terms_agreement( $form_id ) { |
| 1476 | 1476 | $form_option = give_get_meta( $form_id, '_give_terms_option', true ); |
@@ -1647,7 +1647,7 @@ discard block |
||
| 1647 | 1647 | * @param int $form_id The form ID. |
| 1648 | 1648 | * @param array $args An array of form arguments. |
| 1649 | 1649 | * |
| 1650 | - * @return mixed |
|
| 1650 | + * @return boolean |
|
| 1651 | 1651 | */ |
| 1652 | 1652 | function give_show_goal_progress( $form_id, $args ) { |
| 1653 | 1653 | |
@@ -1667,7 +1667,7 @@ discard block |
||
| 1667 | 1667 | * |
| 1668 | 1668 | * @since 1.8 |
| 1669 | 1669 | * |
| 1670 | - * @param $form_id |
|
| 1670 | + * @param integer $form_id |
|
| 1671 | 1671 | * @param $args |
| 1672 | 1672 | * |
| 1673 | 1673 | * @return mixed|string |
@@ -1708,7 +1708,7 @@ discard block |
||
| 1708 | 1708 | * @param int $form_id The form ID. |
| 1709 | 1709 | * @param array $args An array of form arguments. |
| 1710 | 1710 | * |
| 1711 | - * @return void|bool |
|
| 1711 | + * @return false|null |
|
| 1712 | 1712 | */ |
| 1713 | 1713 | function give_form_content( $form_id, $args ) { |
| 1714 | 1714 | |