X7ROOT File Manager
Current Path:
/opt/cpanel/ea-wappspector/vendor/rector/rector/src/ValueObject
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
ValueObject
/
??
..
??
Application
??
Bootstrap
??
Configuration.php
(3.74 KB)
??
Error
??
FileProcessResult.php
(952 B)
??
FuncCallAndExpr.php
(646 B)
??
MethodName.php
(1.15 KB)
??
PhpVersion.php
(1.12 KB)
??
PhpVersionFeature.php
(16.74 KB)
??
PolyfillPackage.php
(286 B)
??
ProcessResult.php
(1.29 KB)
??
Reporting
??
SprintfStringAndArgs.php
(761 B)
??
Visibility.php
(718 B)
Editing: FuncCallAndExpr.php
<?php declare (strict_types=1); namespace Rector\ValueObject; use PhpParser\Node\Expr; use PhpParser\Node\Expr\FuncCall; final class FuncCallAndExpr { /** * @readonly * @var \PhpParser\Node\Expr\FuncCall */ private $funcCall; /** * @readonly * @var \PhpParser\Node\Expr */ private $expr; public function __construct(FuncCall $funcCall, Expr $expr) { $this->funcCall = $funcCall; $this->expr = $expr; } public function getFuncCall() : FuncCall { return $this->funcCall; } public function getExpr() : Expr { return $this->expr; } }
Upload File
Create Folder