mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
a73aa7eec1
Our output for yield / yield from is currently not very nice, but also not easy to change.
11 lines
172 B
Plaintext
11 lines
172 B
Plaintext
Constant declarations
|
|
-----
|
|
<?php
|
|
|
|
const FOO = 'BAR';
|
|
const FOO = 1 + 1;
|
|
const FOO = BAR, BAR = FOO;
|
|
-----
|
|
const FOO = 'BAR';
|
|
const FOO = 1 + 1;
|
|
const FOO = BAR, BAR = FOO; |