@@ -11,6 +11,9 @@ |
||
11 | 11 | private $declarations; |
12 | 12 | private $current_relative_path; |
13 | 13 | |
14 | + /** |
|
15 | + * @param $declarations |
|
16 | + */ |
|
14 | 17 | public function __construct( $current_relative_path, $declarations ) { |
15 | 18 | $this->current_relative_path = $current_relative_path; |
16 | 19 | $this->declarations = $declarations; |
@@ -14,6 +14,9 @@ discard block |
||
14 | 14 | private $product_name; |
15 | 15 | private $connection; |
16 | 16 | |
17 | + /** |
|
18 | + * @param Connection\Manager $connection |
|
19 | + */ |
|
17 | 20 | function __construct( $product_name = 'jetpack', $connection = null ) { |
18 | 21 | $this->product_name = $product_name; |
19 | 22 | $this->connection = $connection; |
@@ -60,7 +63,6 @@ discard block |
||
60 | 63 | /** |
61 | 64 | * Record an event in Tracks - this is the preferred way to record events from PHP. |
62 | 65 | * |
63 | - * @param mixed $identity username, user_id, or WP_user object |
|
64 | 66 | * @param string $event_name The name of the event |
65 | 67 | * @param array $properties Custom properties to send with the event |
66 | 68 | * @param int $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred |
@@ -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 ) { |
@@ -102,6 +102,9 @@ discard block |
||
102 | 102 | return $user; |
103 | 103 | } |
104 | 104 | |
105 | + /** |
|
106 | + * @param \WP_User|null $user |
|
107 | + */ |
|
105 | 108 | public function expand_user( $user ) { |
106 | 109 | if ( ! is_object( $user ) ) { |
107 | 110 | return null; |
@@ -404,6 +407,9 @@ discard block |
||
404 | 407 | return (int) ceil( $count / self::ARRAY_CHUNK_SIZE ); |
405 | 408 | } |
406 | 409 | |
410 | + /** |
|
411 | + * @return string |
|
412 | + */ |
|
407 | 413 | private function get_where_sql( $config ) { |
408 | 414 | global $wpdb; |
409 | 415 |