Skip to content
This repository has been archived by the owner on Jun 13, 2021. It is now read-only.

Commit

Permalink
fix grammar in failed test message
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneOH committed May 2, 2018
1 parent 2bc1b2f commit 14d5acd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements_check.php
Expand Up @@ -97,7 +97,7 @@ public function check64Bit()
if (PHP_INT_MAX === 9223372036854775807) {
$this->pass('You are running a 64-bit version of PHP');
} else {
$this->fail('You are not running a 64-bit version of PHP. You may run into issues with integer values been to long for object properties.');
$this->fail('You are not running a 64-bit version of PHP. You may run into issues when handling object properties and assigning values to integers that are greater than the largest possible 32 bit integer value');
}
}

Expand Down

0 comments on commit 14d5acd

Please sign in to comment.