@@ -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. |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * Returns true if the user with the specified identifier is connected to |
57 | 57 | * WordPress.com. |
58 | 58 | * |
59 | - * @param Integer|Boolean $user_id the user identifier. |
|
59 | + * @param integer $user_id the user identifier. |
|
60 | 60 | * @return Boolean is the user connected? |
61 | 61 | */ |
62 | 62 | public function is_user_connected( $user_id = false ) { |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * Get the wpcom user data of the current|specified connected user. |
73 | 73 | * |
74 | 74 | * @param Integer $user_id the user identifier. |
75 | - * @return Object the user object. |
|
75 | + * @return integer the user object. |
|
76 | 76 | */ |
77 | 77 | public function get_connected_user_data( $user_id ) { |
78 | 78 | return $user_id; |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | * Is the user the connection owner. |
83 | 83 | * |
84 | 84 | * @param Integer $user_id the user identifier. |
85 | - * @return Boolean is the user the connection owner? |
|
85 | + * @return integer is the user the connection owner? |
|
86 | 86 | */ |
87 | 87 | public function is_connection_owner( $user_id ) { |
88 | 88 | return $user_id; |
@@ -115,7 +115,7 @@ |
||
115 | 115 | * Mock a global function and make it return a certain value. |
116 | 116 | * |
117 | 117 | * @param string $function_name Name of the function. |
118 | - * @param mixed $return_value Return value of the function. |
|
118 | + * @param integer $return_value Return value of the function. |
|
119 | 119 | * @return phpmock\Mock The mock object. |
120 | 120 | */ |
121 | 121 | protected function mock_function( $function_name, $return_value = null ) { |