1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 13:50:07 +08:00
SpaceVim/bundle/phpcomplete.vim/tests/fixtures/CompleteUserClass/user_interface_implemented.php

10 lines
97 B
PHP
Raw Normal View History

<?php
class Foo implements FooAble {
}
interface FooAble {
public function bar($baz = 42);
}