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

19 lines
243 B
PHP

<?php
namespace NS1\SubNS2;
use NS2\SubNS\Level2;
class Level1 extends Level2 {
protected function level1Method() {
//
}
public function doSometing() {
$this->
$this->getLevel31Instance()->
$this->getAnother31Instance()->
}
}