Nop.php 301 B

1234567891011121314151617
  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. {
  7. public function getSubNodeNames() : array {
  8. return [];
  9. }
  10. public function getType() : string {
  11. return 'Stmt_Nop';
  12. }
  13. }