1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 20:53:00 +02:00
Files
archived-php-src/tests/code/class.php
2013-12-05 12:23:49 +00:00

9 lines
142 B
PHP

<?php
class test {
public function testMethod(){}
private function testPrivateMethod(){}
protected function testProtectedMethod(){}
}
?>