1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 13:10:05 +08:00
SpaceVim/bundle/phpcomplete.vim-vim7/tests/fixtures/GetClassName/foo_inheritance_level3.php

40 lines
423 B
PHP
Vendored

<?php
namespace NS3\SubNS;
use NS31\SubNS\Level31;
class Level3 {
protected function level3Method_protected() {
//
}
public function level3Method_public() {
}
/**
* Getting a level31 instance.
*
* @return Level31
*/
public function getLevel31Instance() {
}
/**
* Getting another level31 instance.
*
* @return NS31\SubNS\Level31
*/
public function getAnother31Instance() {
}
}
?>