File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/rules/DeadCode/ValueObject/VariableAndPropertyFetchAssign.php
Back
<?php declare (strict_types=1); namespace Rector\DeadCode\ValueObject; use PhpParser\Node\Expr\PropertyFetch; use PhpParser\Node\Expr\Variable; final class VariableAndPropertyFetchAssign { /** * @readonly * @var \PhpParser\Node\Expr\Variable */ private $variable; /** * @readonly * @var \PhpParser\Node\Expr\PropertyFetch */ private $propertyFetch; public function __construct(Variable $variable, PropertyFetch $propertyFetch) { $this->variable = $variable; $this->propertyFetch = $propertyFetch; } public function getVariable() : Variable { return $this->variable; } public function getPropertyFetch() : PropertyFetch { return $this->propertyFetch; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings