aboutsummaryrefslogtreecommitdiff
path: root/php
diff options
context:
space:
mode:
Diffstat (limited to 'php')
-rw-r--r--php/FlatbufferBuilder.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/php/FlatbufferBuilder.php b/php/FlatbufferBuilder.php
index 3738582e..fce4a718 100644
--- a/php/FlatbufferBuilder.php
+++ b/php/FlatbufferBuilder.php
@@ -233,7 +233,7 @@ class FlatbufferBuilder
public function putUint($x)
{
if ($x > PHP_INT_MAX) {
- throw new \InvalidArgumentException("your platform can't handling uint correctly. use 64bit machine.");
+ throw new \InvalidArgumentException("your platform can't handle uint correctly. use 64bit machine.");
}
$this->bb->putUint($this->space -= 4, $x);
@@ -245,7 +245,7 @@ class FlatbufferBuilder
public function putLong($x)
{
if ($x > PHP_INT_MAX) {
- throw new \InvalidArgumentException("your platform can't handling long correctly. use 64bit machine.");
+ throw new \InvalidArgumentException("your platform can't handle long correctly. use 64bit machine.");
}
$this->bb->putLong($this->space -= 8, $x);
@@ -257,7 +257,7 @@ class FlatbufferBuilder
public function putUlong($x)
{
if ($x > PHP_INT_MAX) {
- throw new \InvalidArgumentException("your platform can't handling ulong correctly. this is php limitations. please wait extension release.");
+ throw new \InvalidArgumentException("your platform can't handle ulong correctly. this is php limitations. please wait extension release.");
}
$this->bb->putUlong($this->space -= 8, $x);