mirror of
https://github.com/php/php-src.git
synced 2026-04-28 02:33:17 +02:00
f6605c788f
*.php files are ignored by Git and a better practice might be to rename PHP included files for tests.
11 lines
147 B
PHP
11 lines
147 B
PHP
<?php
|
|
|
|
class a {
|
|
public function test($arg = c::TESTCONSTANT) {
|
|
echo __METHOD__ . "($arg)\n";
|
|
}
|
|
|
|
static public function staticTest() {
|
|
}
|
|
}
|