rector/rules/Removing/ValueObject/ArgumentRemover.php
Tomas Votruba cdc3b7adef Updated Rector to commit f451b0b8e1e6761ec7f50809745d44d01caba66d
f451b0b8e1 [PHP 8.0] Bump to promoted properties (#4)
2021-05-10 23:39:21 +00:00

52 lines
1003 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Removing\ValueObject;
use PHPStan\Type\ObjectType;
final class ArgumentRemover
{
/**
* @var string
*/
private $class;
/**
* @var string
*/
private $method;
/**
* @var int
*/
private $position;
private $value;
/**
* @param mixed $value
*/
public function __construct(string $class, string $method, int $position, $value)
{
$this->class = $class;
$this->method = $method;
$this->position = $position;
$this->value = $value;
}
public function getObjectType() : \PHPStan\Type\ObjectType
{
return new \PHPStan\Type\ObjectType($this->class);
}
public function getMethod() : string
{
return $this->method;
}
public function getPosition() : int
{
return $this->position;
}
/**
* @return mixed
*/
public function getValue()
{
return $this->value;
}
}