1: | <?php declare(strict_types=1); |
2: | |
3: | namespace PhpParser\Node; |
4: | |
5: | use PhpParser\Node; |
6: | use PhpParser\NodeAbstract; |
7: | |
8: | class MatchArm extends NodeAbstract { |
9: | |
10: | public ?array $conds; |
11: | |
12: | public Expr $body; |
13: | |
14: | |
15: | |
16: | |
17: | public function __construct(?array $conds, Node\Expr $body, array $attributes = []) { |
18: | $this->conds = $conds; |
19: | $this->body = $body; |
20: | $this->attributes = $attributes; |
21: | } |
22: | |
23: | public function getSubNodeNames(): array { |
24: | return ['conds', 'body']; |
25: | } |
26: | |
27: | public function getType(): string { |
28: | return 'MatchArm'; |
29: | } |
30: | } |
31: | |