|
3 | 3 | * Copyright © Magento, Inc. All rights reserved.
|
4 | 4 | * See COPYING.txt for license details.
|
5 | 5 | */
|
| 6 | +declare(strict_types=1); |
6 | 7 |
|
7 | 8 | namespace Magento\Setup\Model;
|
8 | 9 |
|
@@ -177,23 +178,23 @@ public function getOptions()
|
177 | 178 | ConfigOptionsListConstants::CONFIG_PATH_DB_CONNECTION_DEFAULT_DRIVER_OPTIONS .
|
178 | 179 | '/' . ConfigOptionsListConstants::KEY_MYSQL_SSL_KEY,
|
179 | 180 | 'Full path of client key file in order to establish db connection through SSL',
|
180 |
| - null |
| 181 | + '' |
181 | 182 | ),
|
182 | 183 | new TextConfigOption(
|
183 | 184 | ConfigOptionsListConstants::INPUT_KEY_DB_SSL_CERT,
|
184 | 185 | TextConfigOption::FRONTEND_WIZARD_TEXT,
|
185 | 186 | ConfigOptionsListConstants::CONFIG_PATH_DB_CONNECTION_DEFAULT_DRIVER_OPTIONS .
|
186 | 187 | '/' . ConfigOptionsListConstants::KEY_MYSQL_SSL_CERT,
|
187 | 188 | 'Full path of client certificate file in order to establish db connection through SSL',
|
188 |
| - null |
| 189 | + '' |
189 | 190 | ),
|
190 | 191 | new TextConfigOption(
|
191 | 192 | ConfigOptionsListConstants::INPUT_KEY_DB_SSL_CA,
|
192 | 193 | TextConfigOption::FRONTEND_WIZARD_TEXT,
|
193 | 194 | ConfigOptionsListConstants::CONFIG_PATH_DB_CONNECTION_DEFAULT_DRIVER_OPTIONS .
|
194 | 195 | '/' . ConfigOptionsListConstants::KEY_MYSQL_SSL_CA,
|
195 | 196 | 'Full path of server certificate file in order to establish db connection through SSL',
|
196 |
| - null |
| 197 | + '' |
197 | 198 | ),
|
198 | 199 | new FlagConfigOption(
|
199 | 200 | ConfigOptionsListConstants::INPUT_KEY_DB_SSL_VERIFY,
|
|
0 commit comments