github-pachong/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php
hellcat c69d35d1bb 1
2026-01-10 16:40:33 +08:00

17 lines
295 B
PHP
Executable File

<?php declare(strict_types=1);
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
/** Nop/empty statement (;). */
class Nop extends Node\Stmt {
public function getSubNodeNames(): array {
return [];
}
public function getType(): string {
return 'Stmt_Nop';
}
}