%PDF- %PDF-
| Direktori : /home2/vacivi36/vacivitta_bakcup/vendor/rector/rector/src/ValueObject/ |
| Current File : //home2/vacivi36/vacivitta_bakcup/vendor/rector/rector/src/ValueObject/RectifiedNode.php |
<?php
declare (strict_types=1);
namespace Rector\Core\ValueObject;
use PhpParser\Node;
final class RectifiedNode
{
/**
* @readonly
* @var string
*/
private $rectorClass;
/**
* @readonly
* @var \PhpParser\Node
*/
private $node;
public function __construct(string $rectorClass, \PhpParser\Node $node)
{
$this->rectorClass = $rectorClass;
$this->node = $node;
}
public function getRectorClass() : string
{
return $this->rectorClass;
}
public function getNode() : \PhpParser\Node
{
return $this->node;
}
}