mirror of
https://github.com/danog/parser.git
synced 2024-12-04 18:38:11 +01:00
5127b2116d
Signed-off-by: azjezz <azjezz@protonmail.com>
27 lines
321 B
PHP
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;
|
|
}
|