Nop.php 295 B

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