mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 03:50:05 +08:00
21 lines
193 B
PHP
Vendored
21 lines
193 B
PHP
Vendored
<?php
|
|
namespace NS2\SubNS;
|
|
|
|
use NS3\SubNS\Level3;
|
|
|
|
class Level2 extends Level3 {
|
|
|
|
protected function level2Method_protected() {
|
|
//
|
|
}
|
|
|
|
|
|
public function level2Method_public() {
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|
|
|