You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
On line 291, it uses stream_resolve_include_path() which wasn't included until 5.3.2. Updating the version to 5.3.2 fixes the issue entirely, otherwise it will error out.
The text was updated successfully, but these errors were encountered:
On line 289 of StandardAutoloader.php, it states:
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
On line 291, it uses stream_resolve_include_path() which wasn't included until 5.3.2. Updating the version to 5.3.2 fixes the issue entirely, otherwise it will error out.
The text was updated successfully, but these errors were encountered: