- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
16 lines
295 B
PHP
16 lines
295 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';
|
|
}
|
|
}
|