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

21 lines
193 B
PHP
Raw Normal View History

2024-08-21 14:17:26 +08:00
<?php
namespace NS2\SubNS;
use NS3\SubNS\Level3;
class Level2 extends Level3 {
protected function level2Method_protected() {
//
}
public function level2Method_public() {
}
}
?>