17 lines
316 B
PHP
17 lines
316 B
PHP
<?php
|
|
/**
|
|
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
|
|
namespace Wowow\Debug\Console\Command;
|
|
|
|
interface DebugOptionsInterface
|
|
{
|
|
/**
|
|
* Key for dry-run option
|
|
*/
|
|
const FOR_HINTS = 'for-hints';
|
|
|
|
const VALUE_HINTS = 'value-hints';
|
|
} |