File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
library/DrSlump/Protobuf/Codec/Binary Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ public function varint($value)
92
92
$ values = $ this ->varint_gmp ($ value );
93
93
} else if (PHP_INT_SIZE < 8 ) {
94
94
throw new \OutOfBoundsException (
95
- ' PHP versions compiled with 32bit integers can only support negative integer encoding with GMP extension ($value was given) '
95
+ " PHP versions compiled with 32bit integers can only support negative integer encoding with GMP extension ( $ value was given) "
96
96
);
97
97
} else if (function_exists ('bccomp ' )) {
98
98
$ value = sprintf ('%u ' , $ value );
@@ -234,7 +234,7 @@ public function sFixed64_bc($value)
234
234
{
235
235
if (PHP_INT_SIZE < 8 ) {
236
236
throw new \OutOfBoundsException (
237
- ' PHP versions compiled with 32bit integers can only support negative integer encoding with GMP extension ($value was given) '
237
+ " PHP versions compiled with 32bit integers can only support negative integer encoding with GMP extension ( $ value was given) "
238
238
);
239
239
}
240
240
You can’t perform that action at this time.
0 commit comments