Skip to content

Commit 0714e35

Browse files
committed
MAGETWO-66906: Deprecate setup:store-config:set command
1 parent afd75f8 commit 0714e35

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

setup/src/Magento/Setup/Console/Command/InstallStoreConfigurationCommand.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -142,64 +142,64 @@ public function getOptionsList()
142142
null,
143143
InputOption::VALUE_REQUIRED,
144144
'URL the store is supposed to be available at. '
145-
. 'Deprecated, use config:set with path web/unsecure/base_url'
145+
. 'Deprecated, use config:set with path web/unsecure/base_url'
146146
),
147147
new InputOption(
148148
StoreConfigurationDataMapper::KEY_LANGUAGE,
149149
null,
150150
InputOption::VALUE_REQUIRED,
151151
'Default language code. '
152-
. 'Deprecated, use config:set with path general/locale/code'
152+
. 'Deprecated, use config:set with path general/locale/code'
153153
),
154154
new InputOption(
155155
StoreConfigurationDataMapper::KEY_TIMEZONE,
156156
null,
157157
InputOption::VALUE_REQUIRED,
158158
'Default time zone code. '
159-
. 'Deprecated, use config:set with path general/locale/timezone'
159+
. 'Deprecated, use config:set with path general/locale/timezone'
160160
),
161161
new InputOption(
162162
StoreConfigurationDataMapper::KEY_CURRENCY,
163163
null,
164164
InputOption::VALUE_REQUIRED,
165165
'Default currency code. '
166-
. 'Deprecated, use config:set with path currency/options/base, currency/options/default'
167-
. ' and currency/options/allow'
166+
. 'Deprecated, use config:set with path currency/options/base, currency/options/default'
167+
. ' and currency/options/allow'
168168
),
169169
new InputOption(
170170
StoreConfigurationDataMapper::KEY_USE_SEF_URL,
171171
null,
172172
InputOption::VALUE_REQUIRED,
173173
'Use rewrites. '
174-
. 'Deprecated, use config:set with path web/seo/use_rewrites'
174+
. 'Deprecated, use config:set with path web/seo/use_rewrites'
175175
),
176176
new InputOption(
177177
StoreConfigurationDataMapper::KEY_IS_SECURE,
178178
null,
179179
InputOption::VALUE_REQUIRED,
180180
'Use secure URLs. Enable this option only if SSL is available. '
181-
. 'Deprecated, use config:set with path web/secure/use_in_frontend'
181+
. 'Deprecated, use config:set with path web/secure/use_in_frontend'
182182
),
183183
new InputOption(
184184
StoreConfigurationDataMapper::KEY_BASE_URL_SECURE,
185185
null,
186186
InputOption::VALUE_REQUIRED,
187187
'Base URL for SSL connection. '
188-
. 'Deprecated, use config:set with path web/secure/base_url'
188+
. 'Deprecated, use config:set with path web/secure/base_url'
189189
),
190190
new InputOption(
191191
StoreConfigurationDataMapper::KEY_IS_SECURE_ADMIN,
192192
null,
193193
InputOption::VALUE_REQUIRED,
194194
'Run admin interface with SSL. '
195-
. 'Deprecated, use config:set with path web/secure/use_in_adminhtml'
195+
. 'Deprecated, use config:set with path web/secure/use_in_adminhtml'
196196
),
197197
new InputOption(
198198
StoreConfigurationDataMapper::KEY_ADMIN_USE_SECURITY_KEY,
199199
null,
200200
InputOption::VALUE_REQUIRED,
201201
'Whether to use a "security key" feature in Magento Admin URLs and forms. '
202-
. 'Deprecated, use config:set with path admin/security/use_form_key'
202+
. 'Deprecated, use config:set with path admin/security/use_form_key'
203203
),
204204
];
205205
}

0 commit comments

Comments
 (0)