mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-22 02:36:52 +01:00
* cleanup compoesr update run * rename provideConfigFile() to provideConfigFilePath() * merge AbstractComposerRectorTestCase to AbstractRectorTestCase * rename ComposerProcessorNonPhp to ComposerFileProcessor
11 lines
161 B
PHP
11 lines
161 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Rector\Testing\Contract;
|
|
|
|
interface ConfigFileAwareInterface
|
|
{
|
|
public function provideConfigFilePath(): string;
|
|
}
|