Skip to content

Commit a27a21e

Browse files
committed
Merge branch 'master' of github.com:drslump/Protobuf-PHP
2 parents faa153e + d73379f commit a27a21e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/DrSlump/Protobuf/Codec/Binary/Writer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function varint($value)
9292
$values = $this->varint_gmp($value);
9393
} else if (PHP_INT_SIZE < 8) {
9494
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)"
9696
);
9797
} else if (function_exists('bccomp')) {
9898
$value = sprintf('%u', $value);
@@ -234,7 +234,7 @@ public function sFixed64_bc($value)
234234
{
235235
if (PHP_INT_SIZE < 8) {
236236
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)"
238238
);
239239
}
240240

0 commit comments

Comments
 (0)