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 8df24df commit cfb0b56Copy full SHA for cfb0b56
src/Type/Definition/IntType.php
@@ -24,8 +24,8 @@ class IntType extends ScalarType
24
//
25
// n.b. JavaScript's integers are safe between -(2^53 - 1) and 2^53 - 1 because
26
// they are internally represented as IEEE 754 doubles.
27
- private const MAX_INT = 2147483647;
28
- private const MIN_INT = -2147483648;
+ public const MAX_INT = 2147483647;
+ public const MIN_INT = -2147483648;
29
30
/** @var string */
31
public $name = Type::INT;
0 commit comments