We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cd2fbe commit ee709efCopy full SHA for ee709ef
ext/opcache/tests/gh21052.phpt
@@ -26,3 +26,7 @@ array(1) {
26
[0]=>
27
string(3) "foo"
28
}
29
+array(1) {
30
+ [0]=>
31
+ string(3) "foo"
32
+}
ext/opcache/tests/gh21052_a.inc
@@ -7,3 +7,7 @@ class A {
7
return ['foo'];
8
9
10
+
11
+function test() {
12
+ return ['foo'];
13
ext/opcache/tests/gh21052_b.inc
@@ -2,3 +2,4 @@
2
3
var_dump(A::C);
4
var_dump(A::test());
5
+var_dump(test());
0 commit comments