Skip to content

Commit a4fde5d

Browse files
committed
Regenerating function list
1 parent 17e266b commit a4fde5d

File tree

2 files changed

+1428
-1451
lines changed

2 files changed

+1428
-1451
lines changed

generated/array.php

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,6 @@
22

33
namespace Safe;
44

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-
265
/**
276
* array_multisort can be used to sort several
287
* arrays at once, or a multi-dimensional array by one or more

0 commit comments

Comments
 (0)