You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: generated/gmp.php
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,14 @@
7
7
/**
8
8
* Export a GMP number to a binary string
9
9
*
10
-
* @param GMP|string|int $gmpnumber The GMP number being exported
10
+
* @param \GMP|string|int $gmpnumber The GMP number being exported
11
11
* @param int $word_size Default value is 1. The number of bytes in each chunk of binary data. This is mainly used in conjunction with the options parameter.
12
12
* @param int $options Default value is GMP_MSW_FIRST | GMP_NATIVE_ENDIAN.
@@ -31,11 +31,11 @@ function gmp_export(GMP $gmpnumber, int $word_size = 1, int $options = GMP_MSW_F
31
31
* @param string $data The binary string being imported
32
32
* @param int $word_size Default value is 1. The number of bytes in each chunk of binary data. This is mainly used in conjunction with the options parameter.
33
33
* @param int $options Default value is GMP_MSW_FIRST | GMP_NATIVE_ENDIAN.
@@ -49,12 +49,12 @@ function gmp_import(string $data, int $word_size = 1, int $options = GMP_MSW_FIR
49
49
/**
50
50
*
51
51
*
52
-
* @param GMP|string|int $seed The seed to be set for the gmp_random,
52
+
* @param \GMP|string|int $seed The seed to be set for the gmp_random,
53
53
* gmp_random_bits, and
54
54
* gmp_random_range functions.
55
55
*
56
56
* Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number.
0 commit comments