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';
|
|
}
|
|
} |