mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 06:40:06 +08:00
23 lines
302 B
PHP
23 lines
302 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
class FooMethodsClass {
|
||
|
function method1($foo) {
|
||
|
}
|
||
|
|
||
|
public function method2($foo) {
|
||
|
}
|
||
|
|
||
|
public static function method3($foo) {
|
||
|
}
|
||
|
|
||
|
static public function method4($foo) {
|
||
|
}
|
||
|
|
||
|
private function method5($foo) {
|
||
|
}
|
||
|
|
||
|
protected function method6($foo) {
|
||
|
}
|
||
|
}
|