| 1: | <?php declare(strict_types=1); |
| 2: | |
| 3: | namespace PhpParser\Node\Stmt; |
| 4: | |
| 5: | use PhpParser\Node; |
| 6: | |
| 7: | /** Nop/empty statement (;). */ |
| 8: | class Nop extends Node\Stmt { |
| 9: | public function getSubNodeNames(): array { |
| 10: | return []; |
| 11: | } |
| 12: | |
| 13: | public function getType(): string { |
| 14: | return 'Stmt_Nop'; |
| 15: | } |
| 16: | } |
| 17: |