mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 13:28:18 +01:00
9a4a5b2bc5
eb5df4dde7
Use vendor-patches main branch (#6453)
43 lines
964 B
PHP
43 lines
964 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Arguments\ValueObject;
|
|
|
|
use PHPStan\Type\ObjectType;
|
|
use Rector\Validation\RectorAssert;
|
|
final class RemoveMethodCallParam
|
|
{
|
|
/**
|
|
* @readonly
|
|
*/
|
|
private string $class;
|
|
/**
|
|
* @readonly
|
|
*/
|
|
private string $methodName;
|
|
/**
|
|
* @readonly
|
|
*/
|
|
private int $paramPosition;
|
|
public function __construct(string $class, string $methodName, int $paramPosition)
|
|
{
|
|
$this->class = $class;
|
|
$this->methodName = $methodName;
|
|
$this->paramPosition = $paramPosition;
|
|
RectorAssert::className($class);
|
|
RectorAssert::methodName($methodName);
|
|
}
|
|
public function getObjectType() : ObjectType
|
|
{
|
|
return new ObjectType($this->class);
|
|
}
|
|
public function getMethodName() : string
|
|
{
|
|
return $this->methodName;
|
|
}
|
|
public function getParamPosition() : int
|
|
{
|
|
return $this->paramPosition;
|
|
}
|
|
}
|