Skip to content

Commit

Permalink
mics
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jul 1, 2021
1 parent 1f17cba commit 6238705
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rules/Naming/Contract/RenameParamValueObjectInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@

namespace Rector\Naming\Contract;

use PhpParser\Node\FunctionLike;
use PhpParser\Node\Expr\Closure;
use PhpParser\Node\Param;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Function_;

interface RenameParamValueObjectInterface extends RenameValueObjectInterface
{
public function getFunctionLike(): FunctionLike;
public function getFunctionLike(): ClassMethod | Function_ | Closure;

public function getParam(): Param;
}

0 comments on commit 6238705

Please sign in to comment.