rector/packages/ChangesReporting/ValueObject/RectorWithLineChange.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

34 lines
720 B
PHP

<?php
declare (strict_types=1);
namespace Rector\ChangesReporting\ValueObject;
use Rector\Core\Contract\Rector\RectorInterface;
final class RectorWithLineChange
{
/**
* @var \Rector\Core\Contract\Rector\RectorInterface
*/
private $rector;
/**
* @var int
*/
private $line;
public function __construct(\Rector\Core\Contract\Rector\RectorInterface $rector, int $line)
{
$this->rector = $rector;
$this->line = $line;
}
/**
* @return class-string<RectorInterface>
*/
public function getRectorClass() : string
{
return \get_class($this->rector);
}
public function getLine() : int
{
return $this->line;
}
}