@@ -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 ) { |
@@ -95,6 +95,9 @@ |
||
95 | 95 | return (array) $upgrader->skin->get_upgrade_messages(); |
96 | 96 | } |
97 | 97 | |
98 | + /** |
|
99 | + * @param string $plugin_slug |
|
100 | + */ |
|
98 | 101 | protected static function generate_wordpress_org_plugin_download_link( $plugin_slug ) { |
99 | 102 | return "https://downloads.wordpress.org/plugin/$plugin_slug.latest-stable.zip"; |
100 | 103 | } |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | * @param string $vendorPath Path to the vendor directory. |
161 | 161 | * @param string $basePath Base Path. |
162 | 162 | * |
163 | - * @return array $classMap |
|
163 | + * @return string $classMap |
|
164 | 164 | */ |
165 | 165 | private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) { |
166 | 166 | $blacklist = null; |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | /** |
225 | 225 | * Generate the PHP that will be used in the autoload_classmap_package.php files. |
226 | 226 | * |
227 | - * @param srting $classMap class map array string that is to be written out to the file. |
|
227 | + * @param string $classMap class map array string that is to be written out to the file. |
|
228 | 228 | * |
229 | 229 | * @return string |
230 | 230 | */ |
@@ -33,6 +33,9 @@ |
||
33 | 33 | } |
34 | 34 | } |
35 | 35 | |
36 | + /** |
|
37 | + * @param string $root |
|
38 | + */ |
|
36 | 39 | public function scan_dir( $root, $exclude = array() ) { |
37 | 40 | |
38 | 41 | if ( is_null( $exclude ) || ! is_array( $exclude ) ) { |
@@ -37,6 +37,9 @@ |
||
37 | 37 | } |
38 | 38 | } |
39 | 39 | |
40 | + /** |
|
41 | + * @param string $root |
|
42 | + */ |
|
40 | 43 | public function scan_dir( $root, $exclude = array() ) { |
41 | 44 | $filter = function ( $file, $key, $iterator ) use ( $exclude ) { |
42 | 45 | if ( $iterator->hasChildren() && ! in_array( $file->getFilename(), $exclude ) ) { |
@@ -9,6 +9,9 @@ |
||
9 | 9 | private $invocations; |
10 | 10 | private $file_path; |
11 | 11 | |
12 | + /** |
|
13 | + * @param $invocations |
|
14 | + */ |
|
12 | 15 | public function __construct( $file_path, $invocations ) { |
13 | 16 | $this->file_path = $file_path; |
14 | 17 | $this->invocations = $invocations; |
@@ -31,6 +31,7 @@ |
||
31 | 31 | |
32 | 32 | /** |
33 | 33 | * Saves the items to a file and returns the file contents |
34 | + * @param string $file_path |
|
34 | 35 | */ |
35 | 36 | public function save( $file_path, $allow_empty = true ) { |
36 | 37 |
@@ -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; |
@@ -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 ) { |