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

40 lines
423 B
PHP
Raw Normal View History

<?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() {
}
}
?>