mirror of
https://github.com/php/php-src.git
synced 2026-03-31 12:42:29 +02:00
9 lines
142 B
PHP
9 lines
142 B
PHP
<?php
|
|
class test {
|
|
|
|
public function testMethod(){}
|
|
private function testPrivateMethod(){}
|
|
protected function testProtectedMethod(){}
|
|
}
|
|
?>
|