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 d27e9a4 commit f06a4b7Copy full SHA for f06a4b7
lib/internal/Magento/Framework/Config/ConfigOptionsListConstants.php
@@ -118,7 +118,11 @@ class ConfigOptionsListConstants
118
const KEY_MYSQL_SSL_KEY = \PDO::MYSQL_ATTR_SSL_KEY;
119
const KEY_MYSQL_SSL_CERT = \PDO::MYSQL_ATTR_SSL_CERT;
120
const KEY_MYSQL_SSL_CA = \PDO::MYSQL_ATTR_SSL_CA;
121
- const KEY_MYSQL_SSL_VERIFY = \PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT;
+ /**
122
+ * Constant \PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT cannot be used as it was introduced in PHP 7.1.4
123
+ * and Magento 2 is currently supporting PHP 7.1.3.
124
+ */
125
+ const KEY_MYSQL_SSL_VERIFY = 1014;
126
/**#@-*/
127
128
/**
0 commit comments