1: <?php
2: namespace Pharborist\ControlStructures;
3:
4: use Pharborist\StatementNode;
5: use Pharborist\StatementBlockNode;
6:
7: /**
8: * A default statement in switch control structure.
9: */
10: class DefaultNode extends StatementNode {
11: /**
12: * @var StatementBlockNode
13: */
14: protected $body;
15:
16: /**
17: * @return StatementBlockNode
18: */
19: public function getBody() {
20: return $this->body;
21: }
22: }
23: