rector/rules/Removing/ValueObject/RemoveFuncCallArg.php

35 lines
592 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;
}
}