mirror of
https://github.com/php/php-src.git
synced 2026-04-27 10:16:41 +02:00
37b3e377a4
Signed-off-by: Bob Weinand <bobwei9@hotmail.com>
13 lines
173 B
PHP
13 lines
173 B
PHP
<?php
|
|
|
|
class Foo {
|
|
public static function test() {
|
|
return "foo::test";
|
|
}
|
|
}
|
|
|
|
if (true) {
|
|
function foo() {
|
|
return 'I should be observable';
|
|
}
|
|
} |