@@ -50,7 +50,7 @@ |
||
| 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; |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | * |
| 45 | 45 | * @since: 1.4 |
| 46 | 46 | * |
| 47 | - * @return bool |
|
| 47 | + * @return boolean|null |
|
| 48 | 48 | */ |
| 49 | 49 | function give_allow_sessions_for_sysinfo() { |
| 50 | 50 | if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) { |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | * |
| 216 | 216 | * @access public |
| 217 | 217 | * @since 1.1 |
| 218 | - * @return array |
|
| 218 | + * @return string |
|
| 219 | 219 | */ |
| 220 | 220 | public function get_versions() { |
| 221 | 221 | return $this->versions; |
@@ -665,7 +665,7 @@ discard block |
||
| 665 | 665 | * |
| 666 | 666 | * @param array $args Arguments to override defaults |
| 667 | 667 | * |
| 668 | - * @return array $dates |
|
| 668 | + * @return integer|null $dates |
|
| 669 | 669 | */ |
| 670 | 670 | public function get_dates( $args = array() ) { |
| 671 | 671 | $dates = array(); |
@@ -1808,7 +1808,7 @@ discard block |
||
| 1808 | 1808 | * |
| 1809 | 1809 | * @param int $user_id User ID of user to revoke key for |
| 1810 | 1810 | * |
| 1811 | - * @return string |
|
| 1811 | + * @return boolean |
|
| 1812 | 1812 | */ |
| 1813 | 1813 | public function revoke_api_key( $user_id = 0 ) { |
| 1814 | 1814 | |
@@ -812,7 +812,7 @@ |
||
| 812 | 812 | * @param bool $colon Check if add colon between heading and message. |
| 813 | 813 | * @param string $color Heading color. |
| 814 | 814 | * |
| 815 | - * @return mixed |
|
| 815 | + * @return string |
|
| 816 | 816 | */ |
| 817 | 817 | private function color_message( $heading, $message = '', $colon = true, $color = 'g' ) { |
| 818 | 818 | // Add colon. |
@@ -890,7 +890,7 @@ discard block |
||
| 890 | 890 | * @access public |
| 891 | 891 | * |
| 892 | 892 | * @param string $meta_key Metadata name. Default is empty. |
| 893 | - * @param mixed $meta_value Metadata value. |
|
| 893 | + * @param string $meta_value Metadata value. |
|
| 894 | 894 | * @param bool $unique Optional. Whether the same key should not be added. Default is false. |
| 895 | 895 | * |
| 896 | 896 | * @return bool False for failure. True for success. |
@@ -922,7 +922,7 @@ discard block |
||
| 922 | 922 | * @access public |
| 923 | 923 | * |
| 924 | 924 | * @param string $meta_key Metadata name. Default is empty. |
| 925 | - * @param mixed $meta_value Optional. Metadata value. Default is empty. |
|
| 925 | + * @param string $meta_value Optional. Metadata value. Default is empty. |
|
| 926 | 926 | * |
| 927 | 927 | * @return bool False for failure. True for success. |
| 928 | 928 | */ |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | * @since 1.0 |
| 159 | 159 | * @access public |
| 160 | 160 | * |
| 161 | - * @param bool|string|int $_id_or_email |
|
| 161 | + * @param integer $_id_or_email |
|
| 162 | 162 | * |
| 163 | 163 | * @return bool|int |
| 164 | 164 | */ |
@@ -313,7 +313,7 @@ discard block |
||
| 313 | 313 | * @param int $user_id User ID. |
| 314 | 314 | * @param WP_User $old_user_data User data. |
| 315 | 315 | * |
| 316 | - * @return bool |
|
| 316 | + * @return false|null |
|
| 317 | 317 | */ |
| 318 | 318 | public function update_customer_email_on_user_update( $user_id = 0, $old_user_data ) { |
| 319 | 319 | |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | * @access public |
| 371 | 371 | * |
| 372 | 372 | * @param string $field ID or email. Default is 'id'. |
| 373 | - * @param mixed $value The Customer ID or email to search. Default is 0. |
|
| 373 | + * @param integer $value The Customer ID or email to search. Default is 0. |
|
| 374 | 374 | * |
| 375 | 375 | * @return mixed Upon success, an object of the customer. Upon failure, NULL |
| 376 | 376 | */ |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | * @access private |
| 220 | 220 | * @since 1.0 |
| 221 | 221 | * |
| 222 | - * @return bool |
|
| 222 | + * @return false|null |
|
| 223 | 223 | */ |
| 224 | 224 | public function auto_updater() { |
| 225 | 225 | |
@@ -475,7 +475,7 @@ discard block |
||
| 475 | 475 | * @access public |
| 476 | 476 | * @since 1.7 |
| 477 | 477 | * |
| 478 | - * @return bool|void |
|
| 478 | + * @return false|null |
|
| 479 | 479 | */ |
| 480 | 480 | public function weekly_license_check() { |
| 481 | 481 | |
@@ -527,7 +527,7 @@ discard block |
||
| 527 | 527 | * @access public |
| 528 | 528 | * @since 1.7 |
| 529 | 529 | * |
| 530 | - * @return bool|void |
|
| 530 | + * @return false|null |
|
| 531 | 531 | */ |
| 532 | 532 | public function weekly_subscription_check() { |
| 533 | 533 | |
@@ -607,7 +607,7 @@ discard block |
||
| 607 | 607 | * @access private |
| 608 | 608 | * @since 1.7 |
| 609 | 609 | * |
| 610 | - * @return bool|void |
|
| 610 | + * @return false|null |
|
| 611 | 611 | */ |
| 612 | 612 | private function __single_subscription_check() { |
| 613 | 613 | // Do not fire if license key is not set. |
@@ -802,7 +802,7 @@ discard block |
||
| 802 | 802 | * @access private |
| 803 | 803 | * @since 1.7 |
| 804 | 804 | * |
| 805 | - * @return void|bool |
|
| 805 | + * @return false|null |
|
| 806 | 806 | */ |
| 807 | 807 | private function __remove_license_key_from_subscriptions(){ |
| 808 | 808 | $subscriptions = get_option( 'give_subscriptions', array() ); |
@@ -463,7 +463,7 @@ |
||
| 463 | 463 | * @since 1.7 |
| 464 | 464 | * @access public |
| 465 | 465 | * |
| 466 | - * @return bool |
|
| 466 | + * @return false|null |
|
| 467 | 467 | */ |
| 468 | 468 | public function delete_cache() { |
| 469 | 469 | global $wpdb; |
@@ -530,7 +530,7 @@ |
||
| 530 | 530 | * |
| 531 | 531 | * @param int $payment_id |
| 532 | 532 | * |
| 533 | - * @return int payment_id |
|
| 533 | + * @return string payment_id |
|
| 534 | 534 | */ |
| 535 | 535 | function give_email_tag_payment_id( $payment_id ) { |
| 536 | 536 | $payment = new Give_Payment( $payment_id ); |