X7ROOT File Manager
Current Path:
/opt/cpanel/ea-wappspector/vendor/rector/rector/rules/Php80/ValueObject
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
rules
/
Php80
/
ValueObject
/
??
..
??
AnnotationPropertyToAttributeClass.php
(1.15 KB)
??
AnnotationToAttribute.php
(1.45 KB)
??
CondAndExpr.php
(1.32 KB)
??
DoctrineTagAndAnnotationToAttribute.php
(1.08 KB)
??
MatchResult.php
(674 B)
??
NestedAnnotationToAttribute.php
(2.25 KB)
??
NestedDoctrineTagAndAnnotationToAttribute.php
(1.14 KB)
??
PropertyPromotionCandidate.php
(1.43 KB)
??
StrStartsWith.php
(1.13 KB)
Editing: MatchResult.php
<?php declare (strict_types=1); namespace Rector\Php80\ValueObject; use PhpParser\Node\Expr\Match_; final class MatchResult { /** * @readonly * @var \PhpParser\Node\Expr\Match_ */ private $match; /** * @readonly * @var bool */ private $shouldRemoveNextStmt; public function __construct(Match_ $match, bool $shouldRemoveNextStmt) { $this->match = $match; $this->shouldRemoveNextStmt = $shouldRemoveNextStmt; } public function getMatch() : Match_ { return $this->match; } public function shouldRemoveNextStmt() : bool { return $this->shouldRemoveNextStmt; } }
Upload File
Create Folder