Skip to content

Commit 24cb132

Browse files
committed
minor #10082 Doctrine server_version should always be a string (alexander-schranz)
This PR was merged into the 2.8 branch. Discussion ---------- Doctrine server_version should always be a string As the comment above say the server_version should always be a string and wrapped by quotes. Commits ------- 1bb4d26 server_version should always be a string
2 parents 70bc28c + 1bb4d26 commit 24cb132

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reference/configuration/doctrine.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,13 @@ If you want to configure multiple connections in YAML, put them under the
136136
user: root
137137
password: null
138138
host: localhost
139-
server_version: 5.6
139+
server_version: '5.6'
140140
customer:
141141
dbname: customer
142142
user: root
143143
password: null
144144
host: localhost
145-
server_version: 5.7
145+
server_version: '5.7'
146146
147147
The ``database_connection`` service always refers to the *default* connection,
148148
which is the first one defined or the one configured via the

0 commit comments

Comments
 (0)