@@ -249,6 +249,9 @@ discard block |
||
249 | 249 | } |
250 | 250 | } |
251 | 251 | |
252 | + /** |
|
253 | + * @param string $path |
|
254 | + */ |
|
252 | 255 | private function readFile($path) |
253 | 256 | { |
254 | 257 | $packages = array(); |
@@ -334,7 +337,6 @@ discard block |
||
334 | 337 | * Insert a key after a specific key in an array. If key doesn't exist, value is appended |
335 | 338 | * to the end of the array. |
336 | 339 | * |
337 | - * @param array $array |
|
338 | 340 | * @param string $key |
339 | 341 | * @param integer $newKey |
340 | 342 | * |
@@ -352,7 +354,6 @@ discard block |
||
352 | 354 | * Insert a key before a specific key in an array. If key doesn't exist, value is prepended |
353 | 355 | * to the beginning of the array. |
354 | 356 | * |
355 | - * @param array $array |
|
356 | 357 | * @param string $key |
357 | 358 | * @param integer $newKey |
358 | 359 | * |