mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:00:07 +08:00
11 lines
86 B
PHP
11 lines
86 B
PHP
|
<?php
|
||
|
|
||
|
interface Foo {
|
||
|
}
|
||
|
|
||
|
interface Foo2 {
|
||
|
}
|
||
|
|
||
|
interface FooFoo2 extends Foo, Foo2 {
|
||
|
}
|