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 the server version is specified without quotes like this:
```yml
server_version: 5.6
```
The resulting compiled container will contain the value
```php
->createConnection(
...
'serverVersion' => 5.5999999999999996447286321199499070644378662109375,
...
)
```
This is a result of floating-point representation issues. Quoting the value will avoid that and will deliver the string `'5.6'` to the `version_compare` function, as it's expecting.
0 commit comments