From c8d3f85160913b092123ce9aca6db9557116c3e8 Mon Sep 17 00:00:00 2001 From: George Steel Date: Tue, 29 Oct 2024 13:44:25 +0000 Subject: [PATCH] Remove useless doc-blocks Signed-off-by: George Steel --- src/ArrayUtils.php | 3 --- test/TestAsset/ArraySerializable.php | 1 - 2 files changed, 4 deletions(-) diff --git a/src/ArrayUtils.php b/src/ArrayUtils.php index 7bfa20dc..c9204189 100644 --- a/src/ArrayUtils.php +++ b/src/ArrayUtils.php @@ -194,7 +194,6 @@ public static function isHashTable(mixed $value, $allowEmpty = false) * * @deprecated This method will be removed in version 4.0 of this component * - * @param array $haystack * @param int|bool $strict * @return bool */ @@ -285,8 +284,6 @@ public static function iteratorToArray($iterator, $recursive = true) * from the second array will be appended to the first array. If both values are arrays, they * are merged together, else the value of the second array overwrites the one of the first array. * - * @param array $a - * @param array $b * @param bool $preserveNumericKeys * @return array */ diff --git a/test/TestAsset/ArraySerializable.php b/test/TestAsset/ArraySerializable.php index de1e88b6..b53988ec 100644 --- a/test/TestAsset/ArraySerializable.php +++ b/test/TestAsset/ArraySerializable.php @@ -26,7 +26,6 @@ public function __construct() /** * Exchange internal values from provided array * - * @param array $array * @return void */ public function exchangeArray(array $array)