@@ -176,7 +176,6 @@ discard block |
||
176 | 176 | /** |
177 | 177 | * Mock a set of filters. |
178 | 178 | * |
179 | - * @param array $args Array of filters with their arguments. |
|
180 | 179 | * @return phpmock\Mock The mock object. |
181 | 180 | */ |
182 | 181 | protected function mock_filters( $filters = array() ) { |
@@ -186,8 +185,7 @@ discard block |
||
186 | 185 | /** |
187 | 186 | * Mock a set of constants. |
188 | 187 | * |
189 | - * @param array $args Array of sets with constants and their respective values. |
|
190 | - * @return phpmock\Mock The mock object. |
|
188 | + * @return phpmock\Mock[] The mock object. |
|
191 | 189 | */ |
192 | 190 | protected function mock_constants( $constants = array() ) { |
193 | 191 | $prepare_constant = function( $constant ) { |
@@ -204,7 +202,7 @@ discard block |
||
204 | 202 | * Mock a global function and make it return a certain value. |
205 | 203 | * |
206 | 204 | * @param string $function_name Name of the function. |
207 | - * @param mixed $return_value Return value of the function. |
|
205 | + * @param string|boolean $return_value Return value of the function. |
|
208 | 206 | * @return phpmock\Mock The mock object. |
209 | 207 | */ |
210 | 208 | protected function mock_function( $function_name, $return_value = null ) { |
@@ -220,7 +218,7 @@ discard block |
||
220 | 218 | /** |
221 | 219 | * Mock $wpdb->get_var() and make it return a certain value. |
222 | 220 | * |
223 | - * @param mixed $return_value Return value of the function. |
|
221 | + * @param integer $return_value Return value of the function. |
|
224 | 222 | * @return PHPUnit\Framework\MockObject\MockObject The mock object. |
225 | 223 | */ |
226 | 224 | protected function mock_wpdb_get_var( $return_value = null ) { |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | * @access public |
223 | 223 | * |
224 | 224 | * @param array $config Full sync configuration for this sync module. |
225 | - * @return array Number of items yet to be enqueued. |
|
225 | + * @return integer Number of items yet to be enqueued. |
|
226 | 226 | */ |
227 | 227 | public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
228 | 228 | return 1; |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | * |
234 | 234 | * @access public |
235 | 235 | * |
236 | - * @return array Full sync actions of this module. |
|
236 | + * @return string[] Full sync actions of this module. |
|
237 | 237 | */ |
238 | 238 | public function get_full_sync_actions() { |
239 | 239 | return array( 'jetpack_full_sync_callables' ); |
@@ -220,7 +220,7 @@ |
||
220 | 220 | * |
221 | 221 | * @access public |
222 | 222 | * |
223 | - * @return array Full sync actions of this module. |
|
223 | + * @return string[] Full sync actions of this module. |
|
224 | 224 | */ |
225 | 225 | public function get_full_sync_actions() { |
226 | 226 | return array( 'jetpack_full_sync_comments' ); |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * @access public |
138 | 138 | * |
139 | 139 | * @param array $config Full sync configuration for this sync module. |
140 | - * @return array Number of items yet to be enqueued. |
|
140 | + * @return integer Number of items yet to be enqueued. |
|
141 | 141 | */ |
142 | 142 | public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
143 | 143 | return 1; |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * |
149 | 149 | * @access public |
150 | 150 | * |
151 | - * @return array Full sync actions of this module. |
|
151 | + * @return string[] Full sync actions of this module. |
|
152 | 152 | */ |
153 | 153 | public function get_full_sync_actions() { |
154 | 154 | return array( 'jetpack_full_sync_constants' ); |
@@ -539,7 +539,7 @@ |
||
539 | 539 | * @access private |
540 | 540 | * |
541 | 541 | * @param string $name Name of the option. |
542 | - * @param mixed $default Default value of the option. |
|
542 | + * @param integer $default Default value of the option. |
|
543 | 543 | * @return mixed Option value. |
544 | 544 | */ |
545 | 545 | private function get_status_option( $name, $default = null ) { |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | * @access public |
132 | 132 | * |
133 | 133 | * @param array $config Full sync configuration for this sync module. |
134 | - * @return array Number of items yet to be enqueued. |
|
134 | + * @return null|integer Number of items yet to be enqueued. |
|
135 | 135 | */ |
136 | 136 | public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
137 | 137 | if ( ! is_multisite() ) { |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | * |
147 | 147 | * @access public |
148 | 148 | * |
149 | - * @return array Full sync actions of this module. |
|
149 | + * @return string[] Full sync actions of this module. |
|
150 | 150 | */ |
151 | 151 | public function get_full_sync_actions() { |
152 | 152 | return array( 'jetpack_full_sync_network_options' ); |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | * @todo Use $wpdb->prepare for the SQL query. |
202 | 202 | * |
203 | 203 | * @param array $config Full sync configuration for this sync module. |
204 | - * @return array Number of items yet to be enqueued. |
|
204 | + * @return integer Number of items yet to be enqueued. |
|
205 | 205 | */ |
206 | 206 | public function estimate_full_sync_actions( $config ) { |
207 | 207 | global $wpdb; |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | * |
238 | 238 | * @access public |
239 | 239 | * |
240 | - * @return array Full sync actions of this module. |
|
240 | + * @return string[] Full sync actions of this module. |
|
241 | 241 | */ |
242 | 242 | public function get_full_sync_actions() { |
243 | 243 | return array( 'jetpack_full_sync_posts' ); |
@@ -162,7 +162,7 @@ |
||
162 | 162 | * |
163 | 163 | * @access public |
164 | 164 | * |
165 | - * @return array Full sync actions of this module. |
|
165 | + * @return string[] Full sync actions of this module. |
|
166 | 166 | */ |
167 | 167 | public function get_full_sync_actions() { |
168 | 168 | return array( 'jetpack_full_sync_terms' ); |
@@ -502,7 +502,7 @@ discard block |
||
502 | 502 | * @access public |
503 | 503 | * |
504 | 504 | * @param array $config Full sync configuration for this sync module. |
505 | - * @return array Number of items yet to be enqueued. |
|
505 | + * @return integer Number of items yet to be enqueued. |
|
506 | 506 | */ |
507 | 507 | public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
508 | 508 | return 1; |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | * |
523 | 523 | * @access public |
524 | 524 | * |
525 | - * @return array Full sync actions of this module. |
|
525 | + * @return string[] Full sync actions of this module. |
|
526 | 526 | */ |
527 | 527 | public function get_full_sync_actions() { |
528 | 528 | return array( 'jetpack_full_sync_theme_data' ); |