Skip to content

Commit

Permalink
remove unused mixed param doc
Browse files Browse the repository at this point in the history
Signed-off-by: Abdul Malik Ikhsan <samsonasik@gmail.com>
  • Loading branch information
samsonasik committed Oct 10, 2022
1 parent d108508 commit 74725af
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions src/ArrayUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public static function hasIntegerKeys(mixed $value, $allowEmpty = false)
* - a float: 2.2120, -78.150999
* - a string with float: '4000.99999', '-10.10'
*
* @param mixed $value
* @param bool $allowEmpty Should an empty array() return true
* @return bool
*/
Expand Down Expand Up @@ -124,7 +123,6 @@ public static function hasNumericKeys(mixed $value, $allowEmpty = false)
* );
* </code>
*
* @param mixed $value
* @param bool $allowEmpty Is an empty list a valid list?
* @return bool
*/
Expand Down Expand Up @@ -166,7 +164,6 @@ public static function isList(mixed $value, $allowEmpty = false)
* );
* </code>
*
* @param mixed $value
* @param bool $allowEmpty Is an empty array() a valid hash table?
* @return bool
*/
Expand All @@ -191,7 +188,6 @@ public static function isHashTable(mixed $value, $allowEmpty = false)
* non-strict check is implemented. if $strict = -1, the default in_array
* non-strict behaviour is used.
*
* @param mixed $needle
* @param array $haystack
* @param int|bool $strict
* @return bool
Expand Down
1 change: 0 additions & 1 deletion src/FastPriorityQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ public function extract()
* the same item has been added multiple times, it will not remove other
* instances.
*
* @param mixed $datum
* @return bool False if the item was not found, true otherwise.
*/
public function remove(mixed $datum)
Expand Down
1 change: 0 additions & 1 deletion src/PriorityQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ public function insert($data, $priority = 1)
* the same item has been added multiple times, it will not remove other
* instances.
*
* @param mixed $datum
* @return bool False if the item was not found, true otherwise.
*/
public function remove(mixed $datum)
Expand Down

0 comments on commit 74725af

Please sign in to comment.