1 | <?php |
||
8 | abstract class AbstractNode |
||
9 | { |
||
10 | /** |
||
11 | * Will this node exit? |
||
12 | * |
||
13 | * @return bool |
||
14 | */ |
||
15 | public function willExit() |
||
19 | |||
20 | /** |
||
21 | * @return array |
||
22 | */ |
||
23 | public function getSubVariables() |
||
27 | |||
28 | /** |
||
29 | * @return \PHPSA\ControlFlow\Block[] |
||
30 | */ |
||
31 | public function getSubBlocks() |
||
35 | } |
||
36 |