refactor: susun semula struktur folder — Laravel source ke src/
This commit is contained in:
19
vendor/thecodingmachine/safe/generated/8.1/gmp.php
vendored
Normal file
19
vendor/thecodingmachine/safe/generated/8.1/gmp.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Safe;
|
||||
|
||||
use Safe\Exceptions\GmpException;
|
||||
|
||||
/**
|
||||
* @param \GMP|int|string $seed
|
||||
* @throws GmpException
|
||||
*
|
||||
*/
|
||||
function gmp_random_seed($seed): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \gmp_random_seed($seed);
|
||||
if ($safeResult === false) {
|
||||
throw GmpException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user