mirror of
https://github.com/danog/parser.git
synced 2024-12-04 18:38:11 +01:00
11 lines
177 B
PHP
11 lines
177 B
PHP
|
<?php
|
||
|
|
||
|
interface Foo {}
|
||
|
interface Bar extends Foo {}
|
||
|
interface Car {}
|
||
|
interface Baz extends Bar, Car {}
|
||
|
|
||
|
interface Bob {
|
||
|
public function bar(): string;
|
||
|
function boo();
|
||
|
}
|