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