%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home2/vacivi36/code/vendor/rector/rector/rules/Php80/ValueObject/
Upload File :
Create Path :
Current File : //home2/vacivi36/code/vendor/rector/rector/rules/Php80/ValueObject/ArrayDimFetchAndConstFetch.php

<?php

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

use PhpParser\Node\Expr\ArrayDimFetch;
use PhpParser\Node\Expr\ConstFetch;
final class ArrayDimFetchAndConstFetch
{
    /**
     * @readonly
     * @var \PhpParser\Node\Expr\ArrayDimFetch
     */
    private $arrayDimFetch;
    /**
     * @readonly
     * @var \PhpParser\Node\Expr\ConstFetch
     */
    private $constFetch;
    public function __construct(ArrayDimFetch $arrayDimFetch, ConstFetch $constFetch)
    {
        $this->arrayDimFetch = $arrayDimFetch;
        $this->constFetch = $constFetch;
    }
    public function getArrayDimFetch() : ArrayDimFetch
    {
        return $this->arrayDimFetch;
    }
    public function getConstFetch() : ConstFetch
    {
        return $this->constFetch;
    }
}

Zerion Mini Shell 1.0