19 lines
349 B
PHP
Executable File
19 lines
349 B
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Magento\TestModuleOverrideConfig\Inheritance\Skip;
|
|
|
|
/**
|
|
* Test interface for testing skip override config inheritance.
|
|
*
|
|
* phpcs:disable Generic.Classes.DuplicateClassName
|
|
*/
|
|
interface SkipInterface
|
|
{
|
|
|
|
}
|