parser/tests/fixtures/0279-interface/code.php
Saif Eddin Gmati 5127b2116d
chore: refactor interface ast (#187)
Signed-off-by: azjezz <azjezz@protonmail.com>
2022-12-09 14:42:46 +01:00

27 lines
321 B
PHP

<?php
#[A, B]
#[C, D]
interface A extends B, C {
#[R]
const F = 344;
#[R]
public const O = 344;
#[R]
#[P]
final public const R = 344, P = 214;
#[R]
#[P]
final const M = 34;
#[M]
public function bar(): void;
#[Q]
#[S]
public static function baz(): void;
}