mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 10:18:09 +01:00
14 lines
197 B
PHP
14 lines
197 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
/** Nop/empty statement (;). */
|
|
class Nop extends Node\Stmt
|
|
{
|
|
public function getSubNodeNames() : array {
|
|
return [];
|
|
}
|
|
}
|