summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug45765.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/bug45765.phpt')
-rw-r--r--ext/reflection/tests/bug45765.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/reflection/tests/bug45765.phpt b/ext/reflection/tests/bug45765.phpt
index 7963a03eea..80cb39d0ac 100644
--- a/ext/reflection/tests/bug45765.phpt
+++ b/ext/reflection/tests/bug45765.phpt
@@ -9,16 +9,16 @@ class foo2 {
class foo extends foo2 {
const BAR = "foo's bar";
-
+
function test($a = self::BAR) {
}
-
+
function test2($a = parent::BAR) {
}
function test3($a = foo::BAR) {
}
-
+
function test4($a = foo2::BAR) {
}
}