1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00
Files
archived-php-src/ext/zend_test/tests/observer_preload.inc
T
Bob Weinand 37b3e377a4 Fix opcache preload with observers enabled
Signed-off-by: Bob Weinand <bobwei9@hotmail.com>
2022-11-09 16:37:08 +01:00

13 lines
173 B
PHP

<?php
class Foo {
public static function test() {
return "foo::test";
}
}
if (true) {
function foo() {
return 'I should be observable';
}
}