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

10 lines
97 B
PHP

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