Test Failed
Push — master ( d47f34...2b52fe )
by Stiofan
08:45
created
geodirectory-functions/custom_fields_functions.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2174,6 +2174,9 @@  discard block
 block discarded – undo
2174 2174
 }
2175 2175
 
2176 2176
 
2177
+/**
2178
+ * @return string
2179
+ */
2177 2180
 function geodir_field_icon_proccess($cf){
2178 2181
 
2179 2182
 
@@ -2567,7 +2570,7 @@  discard block
 block discarded – undo
2567 2570
  * @global object $wpdb WordPress Database object.
2568 2571
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2569 2572
  * @param int $post_id The post ID.
2570
- * @return mixed Returns video.
2573
+ * @return string Returns video.
2571 2574
  */
2572 2575
 function geodir_get_video($post_id)
2573 2576
 {
@@ -2593,7 +2596,7 @@  discard block
 block discarded – undo
2593 2596
  * @global object $wpdb WordPress Database object.
2594 2597
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2595 2598
  * @param int $post_id The post ID.
2596
- * @return mixed Returns special offers.
2599
+ * @return string Returns special offers.
2597 2600
  */
2598 2601
 function geodir_get_special_offers($post_id)
2599 2602
 {
@@ -2617,7 +2620,7 @@  discard block
 block discarded – undo
2617 2620
      *
2618 2621
      * @since 1.0.0
2619 2622
      * @package GeoDirectory
2620
-     * @return mixed|void Returns max upload file size.
2623
+     * @return string|null Returns max upload file size.
2621 2624
      */
2622 2625
     function geodir_max_upload_size()
2623 2626
     {
Please login to merge, or discard this patch.
geodirectory-functions/general_functions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2301,7 +2301,7 @@  discard block
 block discarded – undo
2301 2301
  * @global string $table_prefix  WordPress Database Table prefix.
2302 2302
  *
2303 2303
  * @param array $query_args      The query array.
2304
- * @param  int|bool $count_only  If true returns listings count only, otherwise returns array
2304
+ * @param  boolean $count_only  If true returns listings count only, otherwise returns array
2305 2305
  *
2306 2306
  * @return mixed Result object.
2307 2307
  */
@@ -3958,7 +3958,7 @@  discard block
 block discarded – undo
3958 3958
  * @since   1.0.0
3959 3959
  * @since   1.6.1 Fixed add listing page load time.
3960 3960
  * @package GeoDirectory
3961
- * @return bool
3961
+ * @return null|boolean
3962 3962
  */
3963 3963
 function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
3964 3964
 	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
Please login to merge, or discard this patch.