| Current Path : /home/rtorresani/www/vendor/rector/rector/rules/Php80/ValueObject/ |
| Current File : //home/rtorresani/www/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;
}
}