diff options
Diffstat (limited to 'vendor/thecodingmachine/safe/deprecated/mysqli.php')
| -rw-r--r-- | vendor/thecodingmachine/safe/deprecated/mysqli.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/thecodingmachine/safe/deprecated/mysqli.php b/vendor/thecodingmachine/safe/deprecated/mysqli.php deleted file mode 100644 index 13839c6c7..000000000 --- a/vendor/thecodingmachine/safe/deprecated/mysqli.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -namespace Safe; - -use Safe\Exceptions\MysqliException; - -/** - * Returns client per-process statistics. - * - * @return array Returns an array with client stats if success, FALSE otherwise. - * @throws MysqliException - * - */ -function mysqli_get_client_stats(): array -{ - error_clear_last(); - $result = \mysqli_get_client_stats(); - if ($result === false) { - throw MysqliException::createFromPhpError(); - } - return $result; -} |