rector/src/Contract/DependencyInjection/RelatedConfigInterface.php
Tomas Votruba b8be29526e Updated Rector to commit 62ba91690bda77bfa41075d5dda3d0487a869580
62ba91690b [internal] Add RelatedConfigInterface to load external services (#5605)
2024-02-12 08:46:32 +00:00

13 lines
235 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Contract\DependencyInjection;
/**
* @internal Use for rules that require extra custom services.
*/
interface RelatedConfigInterface
{
public function getConfigFile() : string;
}