43 lines
840 B
PHP
43 lines
840 B
PHP
<?php
|
|
/**
|
|
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
|
|
namespace Wowow\Debug\Console\Command;
|
|
|
|
interface ConfigureOptionsInterface
|
|
{
|
|
/**
|
|
* Key for dry-run option
|
|
*/
|
|
const LANGUE = 'langue';
|
|
|
|
const SCOPE = 'scope';
|
|
|
|
const SCOPE_ID = 'scope_id';
|
|
|
|
const STORE_NAME = 'store_name';
|
|
|
|
const STORE_PHONE_NUMBER = 'store_phone_number';
|
|
|
|
const STORE_HOURS_OPERATION = 'store_hours_operation';
|
|
|
|
const STORE_COUNTRY = 'store_country';
|
|
|
|
const STORE_REGION = 'store_region';
|
|
|
|
const STORE_CP = 'store_cp';
|
|
|
|
const STORE_CITY = 'store_city';
|
|
|
|
const STORE_ADR1 = 'store_adr1';
|
|
|
|
const STORE_ADR2 = 'store_adr2';
|
|
|
|
const STORE_VAT = 'store_vat';
|
|
|
|
const STORE_EMAIL = 'store_email';
|
|
|
|
}
|