1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 05:50:06 +08:00
SpaceVim/bundle/phpcomplete.vim/tests/fixtures/GetCurrentSymbolWithContext/foo.php

28 lines
222 B
PHP

<?php
class Foo {
public function baz() {
}
}
/**
* get_foo
*
* @access public
* @return Foo
*/
function get_foo() {
}
get_foo()->baz();
Foo::baz();
$f2 = new \NS2\Foo2;
$f2->returnBaz2()->returnFoo2();
?>