mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
10 lines
147 B
PHP
10 lines
147 B
PHP
<?php
|
|
|
|
class a {
|
|
public function test($arg = c::TESTCONSTANT) {
|
|
echo __METHOD__ . "($arg)\n";
|
|
}
|
|
|
|
static public function staticTest() {
|
|
}
|
|
}
|