We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e266b commit a4fde5dCopy full SHA for a4fde5d
generated/array.php
@@ -2,27 +2,6 @@
2
3
namespace Safe;
4
5
-/**
6
- * array_key_exists returns TRUE if the
7
- * given key is set in the array.
8
- * key can be any value possible
9
- * for an array index.
10
- *
11
- * @param string|int $key Value to check.
12
- * @param array $array An array with keys to check.
13
- * @throws Exceptions\ArrayException
14
15
- */
16
-function array_key_exists($key, array $array): void
17
-{
18
- error_clear_last();
19
- $result = \array_key_exists($key, $array);
20
- if ($result === FALSE) {
21
- throw Exceptions\ArrayException::createFromPhpError();
22
- }
23
-}
24
-
25
26
/**
27
* array_multisort can be used to sort several
28
* arrays at once, or a multi-dimensional array by one or more
0 commit comments