Completed
Push — add/signature-error-reporting ( 95a087...072d13 )
by
unknown
18:31 queued 09:22
created
packages/tracking/src/Tracking.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
packages/status/tests/php/test_Status.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -143,7 +143,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 ) {
Please login to merge, or discard this patch.
packages/connection/tests/php/Manager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
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 ) {
Please login to merge, or discard this patch.
packages/connection/src/Manager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
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 ) {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 	 * Is the user the connection owner.
106 106
 	 *
107 107
 	 * @param Integer $user_id the user identifier.
108
-	 * @return Boolean is the user the connection owner?
108
+	 * @return integer is the user the connection owner?
109 109
 	 */
110 110
 	public function is_connection_owner( $user_id ) {
111 111
 		return $user_id;
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
 	 *
570 570
 	 * @param int|false    $user_id   false: Return the Blog Token. int: Return that user's User Token.
571 571
 	 * @param string|false $token_key If provided, check that the token matches the provided input.
572
-	 * @param bool|true    $suppress_errors If true, return a falsy value when the token isn't found; When false, return a descriptive WP_Error when the token isn't found.
572
+	 * @param boolean    $suppress_errors If true, return a falsy value when the token isn't found; When false, return a descriptive WP_Error when the token isn't found.
573 573
 	 *
574 574
 	 * @return object|false
575 575
 	 */
Please login to merge, or discard this patch.