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

26 lines
217 B
PHP
Raw Normal View History

<?php
namespace NS2;
class Foo2 {
/**
* returnBaz
*
* @return Baz2
*/
public function returnBaz2() {
}
}
class Baz2 {
/**
* returnFoo2
*
* @return Foo2
*/
public function returnFoo2() {
}
}