📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-04 06:21:28
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
📍 /opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/nikic/php-parser/lib/PhpParser/Node
🔄 Refresh
✏️
Editing: MatchArm.php
Read Only
<?php declare (strict_types=1); namespace PhpParser\Node; use PhpParser\Node; use PhpParser\NodeAbstract; class MatchArm extends NodeAbstract { /** @var null|Node\Expr[] */ public $conds; /** @var Node\Expr */ public $body; /** * @param null|Node\Expr[] $conds */ public function __construct($conds, Node\Expr $body, array $attributes = []) { $this->conds = $conds; $this->body = $body; $this->attributes = $attributes; } public function getSubNodeNames() : array { return ['conds', 'body']; } public function getType() : string { return 'MatchArm'; } }
💾 Save Changes
❌ Cancel