@@ -170,6 +170,9 @@ |
||
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | |
| 173 | + /** |
|
| 174 | + * @param string $plugin |
|
| 175 | + */ |
|
| 173 | 176 | protected function validate_plugin( $plugin ) { |
| 174 | 177 | if ( ! isset( $plugin) || empty( $plugin ) ) { |
| 175 | 178 | return new WP_Error( 'missing_plugin', __( 'You are required to specify a plugin to activate.', 'jetpack' ), 400 ); |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | * @param string $vendorPath Path to the vendor directory. |
| 141 | 141 | * @param string $basePath Base Path. |
| 142 | 142 | * |
| 143 | - * @return array $classMap |
|
| 143 | + * @return string $classMap |
|
| 144 | 144 | */ |
| 145 | 145 | private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) { |
| 146 | 146 | $blacklist = null; // not supported for now. |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | /** |
| 179 | 179 | * Generate the PHP that will be used in the autoload_classmap_package.php files. |
| 180 | 180 | * |
| 181 | - * @param srting $classMap class map array string that is to be written out to the file. |
|
| 181 | + * @param string $classMap class map array string that is to be written out to the file. |
|
| 182 | 182 | * |
| 183 | 183 | * @return string |
| 184 | 184 | */ |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * WordPress.com. |
| 60 | 60 | * |
| 61 | 61 | * @param Integer $user_id the user identifier. |
| 62 | - * @return Boolean is the user connected? |
|
| 62 | + * @return integer is the user connected? |
|
| 63 | 63 | */ |
| 64 | 64 | public function is_user_connected( $user_id ) { |
| 65 | 65 | return $user_id; |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | * Is the user the connection owner. |
| 103 | 103 | * |
| 104 | 104 | * @param Integer $user_id the user identifier. |
| 105 | - * @return Boolean is the user the connection owner? |
|
| 105 | + * @return integer is the user the connection owner? |
|
| 106 | 106 | */ |
| 107 | 107 | public function is_connection_owner( $user_id ) { |
| 108 | 108 | return $user_id; |
@@ -546,7 +546,7 @@ discard block |
||
| 546 | 546 | * 2. Stored Normal Tokens (via Jetpack_Options::get_option( 'blog_token' )) |
| 547 | 547 | * 3. Defined Normal Tokens (via the JETPACK_BLOG_TOKEN constant) |
| 548 | 548 | * |
| 549 | - * @param int|false $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
| 549 | + * @param boolean $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
| 550 | 550 | * @param string|false $token_key If provided, check that the token matches the provided input. |
| 551 | 551 | * |
| 552 | 552 | * @return object|false |
@@ -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 |
@@ -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 ) { |