23 lines
399 B
PHP
23 lines
399 B
PHP
<?php
|
|
/**
|
|
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
|
|
namespace Wowow\Debug\Console\Command;
|
|
|
|
interface LogoOptionsInterface
|
|
{
|
|
/**
|
|
* Key for dry-run option
|
|
*/
|
|
const SCOPE = 'scope';
|
|
|
|
const SCOPE_ID = 'scope_id';
|
|
|
|
const FAVICON = 'favicon';
|
|
|
|
const LOGO = 'logo';
|
|
|
|
const EMAIL = 'email';
|
|
} |