@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * WordPress.com. |
59 | 59 | * |
60 | 60 | * @param Integer $user_id the user identifier. |
61 | - * @return Boolean is the user connected? |
|
61 | + * @return integer is the user connected? |
|
62 | 62 | */ |
63 | 63 | public function is_user_connected( $user_id ) { |
64 | 64 | return $user_id; |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * Get the wpcom user data of the current|specified connected user. |
69 | 69 | * |
70 | 70 | * @param Integer $user_id the user identifier. |
71 | - * @return Object the user object. |
|
71 | + * @return integer the user object. |
|
72 | 72 | */ |
73 | 73 | public function get_connected_user_data( $user_id ) { |
74 | 74 | return $user_id; |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * Is the user the connection owner. |
79 | 79 | * |
80 | 80 | * @param Integer $user_id the user identifier. |
81 | - * @return Boolean is the user the connection owner? |
|
81 | + * @return integer is the user the connection owner? |
|
82 | 82 | */ |
83 | 83 | public function is_connection_owner( $user_id ) { |
84 | 84 | return $user_id; |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | * 2. Stored Normal Tokens (via Jetpack_Options::get_option( 'blog_token' )) |
400 | 400 | * 3. Defined Normal Tokens (via the JETPACK_BLOG_TOKEN constant) |
401 | 401 | * |
402 | - * @param int|false $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
402 | + * @param boolean $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
403 | 403 | * @param string|false $token_key If provided, check that the token matches the provided input. |
404 | 404 | * |
405 | 405 | * @return object|false |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * Converts GlotPress URL into a GlotPress API URL |
24 | 24 | * |
25 | - * @param sring $url URL |
|
25 | + * @param string $url URL |
|
26 | 26 | * @return sstring API URL |
27 | 27 | */ |
28 | 28 | function apize_url( $url ) { |
@@ -183,7 +183,6 @@ |
||
183 | 183 | /** |
184 | 184 | * Record an event in Tracks - this is the preferred way to record events from PHP. |
185 | 185 | * |
186 | - * @param mixed $identity username, user_id, or WP_user object |
|
187 | 186 | * @param string $event_name The name of the event |
188 | 187 | * @param array $properties Custom properties to send with the event |
189 | 188 | * @param int $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | /** |
50 | 50 | * record_event |
51 | - * @param mixed $event Event object to send to Tracks. An array will be cast to object. Required. |
|
51 | + * @param Jetpack_Tracks_Event $event Event object to send to Tracks. An array will be cast to object. Required. |
|
52 | 52 | * Properties are included directly in the pixel query string after light validation. |
53 | 53 | * @return mixed True on success, WP_Error on failure |
54 | 54 | */ |
@@ -71,6 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | /** |
73 | 73 | * Synchronously request the pixel |
74 | + * @param string $pixel |
|
74 | 75 | */ |
75 | 76 | static function record_pixel( $pixel ) { |
76 | 77 | // Add the Request Timestamp and URL terminator just before the HTTP request. |
@@ -143,7 +143,6 @@ discard block |
||
143 | 143 | /** |
144 | 144 | * Mock a set of filters. |
145 | 145 | * |
146 | - * @param array $args Array of filters with their arguments. |
|
147 | 146 | * @return phpmock\Mock The mock object. |
148 | 147 | */ |
149 | 148 | protected function mock_filters( $filters = array() ) { |
@@ -153,8 +152,7 @@ discard block |
||
153 | 152 | /** |
154 | 153 | * Mock a set of constants. |
155 | 154 | * |
156 | - * @param array $args Array of sets with constants and their respective values. |
|
157 | - * @return phpmock\Mock The mock object. |
|
155 | + * @return phpmock\Mock[] The mock object. |
|
158 | 156 | */ |
159 | 157 | protected function mock_constants( $constants = array() ) { |
160 | 158 | $prepare_constant = function( $constant ) { |
@@ -171,7 +169,7 @@ discard block |
||
171 | 169 | * Mock a global function and make it return a certain value. |
172 | 170 | * |
173 | 171 | * @param string $function_name Name of the function. |
174 | - * @param mixed $return_value Return value of the function. |
|
172 | + * @param string $return_value Return value of the function. |
|
175 | 173 | * @return phpmock\Mock The mock object. |
176 | 174 | */ |
177 | 175 | protected function mock_function( $function_name, $return_value = null ) { |