@@ -3641,7 +3641,7 @@ discard block |
||
3641 | 3641 | /** |
3642 | 3642 | * Apply the given function to every element in the array, discarding the results. |
3643 | 3643 | * |
3644 | - * @param \callable $callable |
|
3644 | + * @param \Closure $callable |
|
3645 | 3645 | * @param bool $recursive <p>Whether array will be walked recursively or no</p> |
3646 | 3646 | * |
3647 | 3647 | * @return static |
@@ -3733,8 +3733,8 @@ discard block |
||
3733 | 3733 | } |
3734 | 3734 | |
3735 | 3735 | /** |
3736 | - * @param mixed $path |
|
3737 | - * @param \callable $callable |
|
3736 | + * @param string $path |
|
3737 | + * @param \Closure $callable |
|
3738 | 3738 | * @param array|null $currentOffset |
3739 | 3739 | */ |
3740 | 3740 | protected function callAtPath($path, $callable, &$currentOffset = null) |
@@ -3878,7 +3878,7 @@ discard block |
||
3878 | 3878 | } |
3879 | 3879 | |
3880 | 3880 | /** |
3881 | - * @param mixed $glue |
|
3881 | + * @param string $glue |
|
3882 | 3882 | * @param array|static|string $pieces |
3883 | 3883 | * @param bool $useKeys |
3884 | 3884 | * |