%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home2/vacivi36/code/vendor/rector/rector/src/ValueObject/
Upload File :
Create Path :
Current File : //home2/vacivi36/code/vendor/rector/rector/src/ValueObject/RectifiedNode.php

<?php

declare (strict_types=1);
namespace Rector\Core\ValueObject;

use PhpParser\Node;
use Rector\Core\Contract\Rector\RectorInterface;
final class RectifiedNode
{
    /**
     * @var class-string<RectorInterface>
     * @readonly
     */
    private $rectorClass;
    /**
     * @readonly
     * @var \PhpParser\Node
     */
    private $node;
    /**
     * @param class-string<RectorInterface> $rectorClass
     */
    public function __construct(string $rectorClass, Node $node)
    {
        $this->rectorClass = $rectorClass;
        $this->node = $node;
    }
    /**
     * @return class-string<RectorInterface>
     */
    public function getRectorClass() : string
    {
        return $this->rectorClass;
    }
    public function getNode() : Node
    {
        return $this->node;
    }
}

Zerion Mini Shell 1.0