mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-16 05:44:59 +01:00
30 lines
590 B
PHP
30 lines
590 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Removing\ValueObject;
|
|
|
|
final class RemoveFuncCallArg
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $function;
|
|
/**
|
|
* @var int
|
|
*/
|
|
private $argumentPosition;
|
|
public function __construct(string $function, int $argumentPosition)
|
|
{
|
|
$this->function = $function;
|
|
$this->argumentPosition = $argumentPosition;
|
|
}
|
|
public function getFunction() : string
|
|
{
|
|
return $this->function;
|
|
}
|
|
public function getArgumentPosition() : int
|
|
{
|
|
return $this->argumentPosition;
|
|
}
|
|
}
|