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
In order to reproduce the issue would be great provide a detailed description about where the app is running because this issue can be resolved using different workarounds:
Downgrading the doctrine/dbal version as @manren comment above, good catch!
Updating PHP version to 7.1 or greater (including PHP-FPM)
If PHP was updated could be required check and restart the web server (Apache/Nginx)
I took a look and tested on my end and proposed fix works fine but seems is an isolated issue, if more users reports the same problem then with certainty we should downgrade the dbal version
in login error
laravel PDO::ATTR_STATEMENT_CLASS requires format array(classname, array(ctor_args)); the classname must be a string specifying an existing class
need doctrine/dbal=2.6.3 if 2.7+ error
edit composer.json
"doctrine/dbal": "^2.6",
to
"doctrine/dbal": "2.6.*",
The text was updated successfully, but these errors were encountered: