rector/rules/Transform/Contract/ValueObject/ArgumentFuncCallToMethodCallInterface.php
Tomas Votruba ccce5491a7 Updated Rector to commit 58c8a93698
58c8a93698 [DX] Make use of configure() method (#1344)
2021-11-30 13:55:08 +00:00

10 lines
179 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\Contract\ValueObject;
interface ArgumentFuncCallToMethodCallInterface
{
public function getFunction() : string;
}