rector/packages/Testing/Contract/ConfigFileAwareInterface.php
Tomas Votruba 8b62025ce0
Cleanup composer update run (#6094)
* cleanup compoesr update run

* rename provideConfigFile() to provideConfigFilePath()

* merge AbstractComposerRectorTestCase to AbstractRectorTestCase

* rename ComposerProcessorNonPhp to ComposerFileProcessor
2021-04-10 22:12:50 +02:00

11 lines
161 B
PHP

<?php
declare(strict_types=1);
namespace Rector\Testing\Contract;
interface ConfigFileAwareInterface
{
public function provideConfigFilePath(): string;
}