19 lines
		
	
	
		
			361 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			361 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\Fixtures;
 | 
						|
 | 
						|
/**
 | 
						|
 * Test interface for testing fixtures override config inheritance.
 | 
						|
 *
 | 
						|
 * phpcs:disable Generic.Classes.DuplicateClassName
 | 
						|
 */
 | 
						|
interface FixturesInterface
 | 
						|
{
 | 
						|
 | 
						|
}
 |