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