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 06a4a7c commit d5fb764Copy full SHA for d5fb764
lib/triagens/ArangoDb/Autoloader.php
@@ -89,8 +89,8 @@ private static function checkEnvironment()
89
{
90
list($major, $minor) = explode('.', phpversion());
91
92
- if ((int) $major < 5 || ((int) $major === 5 && (int) $minor < 3)) {
93
- throw new ClientException('Incompatible PHP environment. Expecting PHP 5.3 or higher');
+ if ((int) $major < 5 || ((int) $major === 5 && (int) $minor < 5)) {
+ throw new ClientException('Incompatible PHP environment. Expecting PHP 5.5 or higher');
94
}
95
96
0 commit comments