1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-26 20:04:48 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/Nop.php
2018-01-10 18:57:48 +01:00

18 lines
301 B
PHP

<?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';
}
}