spacevim/bundle/phpcomplete.vim/tests/fixtures/GetClassName/foo_inheritance_level1.php

19 lines
243 B
PHP
Raw Normal View History

2024-08-21 14:17:26 +08:00
<?php
namespace NS1\SubNS2;
use NS2\SubNS\Level2;
class Level1 extends Level2 {
protected function level1Method() {
//
}
public function doSometing() {
$this->
$this->getLevel31Instance()->
$this->getAnother31Instance()->
}
}