mirror of
https://github.com/danog/parser.git
synced 2024-12-04 10:27:58 +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();
|
|
} |