summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29104.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug29104.phpt')
-rw-r--r--Zend/tests/bug29104.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/Zend/tests/bug29104.phpt b/Zend/tests/bug29104.phpt
index 788b2190bf..168f534138 100644
--- a/Zend/tests/bug29104.phpt
+++ b/Zend/tests/bug29104.phpt
@@ -3,15 +3,15 @@ Bug #29104 (Function declaration in method doesn't work)
--FILE--
<?php
class A
-{
- function g()
- {
+{
+ function g()
+ {
echo "function g - begin\n";
-
- function f()
- {
+
+ function f()
+ {
echo "function f\n";
- }
+ }
echo "function g - end\n";
}