mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 01:22:23 -04:00
11 lines
No EOL
188 B
Text
11 lines
No EOL
188 B
Text
Nop statement with comment at end (#513)
|
|
-----
|
|
<?php
|
|
$foo;
|
|
$bar;
|
|
-----
|
|
$stmts[1] = new Stmt\Nop(['comments' => [new Comment('//Some comment here')]]);
|
|
-----
|
|
<?php
|
|
$foo;
|
|
//Some comment here |