rector/rules/Naming/ValueObject/ParamRename.php
Tomas Votruba a94a50e863 Updated Rector to commit e525dad6ab1a005e79b751f4cfb1eaf94ae3c90f
e525dad6ab [PHPStan 1.0] Use Nette filesystem over phpstan filewriter (#1115)
2021-10-30 14:18:31 +00:00

69 lines
1.9 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Naming\ValueObject;
use PhpParser\Node\Expr\Closure;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Param;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Function_;
use Rector\Naming\Contract\RenameParamValueObjectInterface;
final class ParamRename implements \Rector\Naming\Contract\RenameParamValueObjectInterface
{
/**
* @var string
*/
private $currentName;
/**
* @var string
*/
private $expectedName;
/**
* @var \PhpParser\Node\Param
*/
private $param;
/**
* @var \PhpParser\Node\Expr\Variable
*/
private $variable;
/**
* @var \PhpParser\Node\Expr\Closure|\PhpParser\Node\Stmt\ClassMethod|\PhpParser\Node\Stmt\Function_
*/
private $functionLike;
/**
* @param \PhpParser\Node\Expr\Closure|\PhpParser\Node\Stmt\ClassMethod|\PhpParser\Node\Stmt\Function_ $functionLike
*/
public function __construct(string $currentName, string $expectedName, \PhpParser\Node\Param $param, \PhpParser\Node\Expr\Variable $variable, $functionLike)
{
$this->currentName = $currentName;
$this->expectedName = $expectedName;
$this->param = $param;
$this->variable = $variable;
$this->functionLike = $functionLike;
}
public function getCurrentName() : string
{
return $this->currentName;
}
public function getExpectedName() : string
{
return $this->expectedName;
}
/**
* @return \PhpParser\Node\Expr\Closure|\PhpParser\Node\Stmt\ClassMethod|\PhpParser\Node\Stmt\Function_
*/
public function getFunctionLike()
{
return $this->functionLike;
}
public function getParam() : \PhpParser\Node\Param
{
return $this->param;
}
public function getVariable() : \PhpParser\Node\Expr\Variable
{
return $this->variable;
}
}