diff options
-rwxr-xr-x | Zend/tests/bug29368.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug31720.phpt | 2 | ||||
-rwxr-xr-x | Zend/tests/bug32226.phpt | 2 | ||||
-rw-r--r-- | Zend/tests/bug33277.phpt | 2 | ||||
-rwxr-xr-x | ext/reflection/tests/bug30856.phpt | 2 | ||||
-rwxr-xr-x | ext/reflection/tests/bug30961.phpt | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/bug29368.phpt b/Zend/tests/bug29368.phpt index 4c5a125240..c16399abbc 100755 --- a/Zend/tests/bug29368.phpt +++ b/Zend/tests/bug29368.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #29368 (The destructor is called when an exception is thrown from the constructor) --FILE-- -<? +<?php class Foo { diff --git a/Zend/tests/bug31720.phpt b/Zend/tests/bug31720.phpt index be57ca2c45..3d62ac34e2 100644 --- a/Zend/tests/bug31720.phpt +++ b/Zend/tests/bug31720.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #31720 (Invalid object callbacks not caught in array_walk()) --FILE-- -<? +<?php $array = array('at least one element'); array_walk($array, array($nonesuchvar,'show')); diff --git a/Zend/tests/bug32226.phpt b/Zend/tests/bug32226.phpt index b2bd754c28..18d8627293 100755 --- a/Zend/tests/bug32226.phpt +++ b/Zend/tests/bug32226.phpt @@ -1,7 +1,7 @@ --TEST-- Bug # 32226 (SEGV with exception handler on non existing instance) --FILE-- -<? +<?php class A { diff --git a/Zend/tests/bug33277.phpt b/Zend/tests/bug33277.phpt index 17e6337f6f..859c449633 100644 --- a/Zend/tests/bug33277.phpt +++ b/Zend/tests/bug33277.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #33277 (private method accessed by child class) --FILE-- -<? +<?php class foo { private function bar() { echo "private!\n"; diff --git a/ext/reflection/tests/bug30856.phpt b/ext/reflection/tests/bug30856.phpt index 2963263388..9b54221860 100755 --- a/ext/reflection/tests/bug30856.phpt +++ b/ext/reflection/tests/bug30856.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #30856 (ReflectionClass::getStaticProperties segfaults) --FILE-- -<? +<?php class bogus { const C = 'test'; static $a = bogus::C; diff --git a/ext/reflection/tests/bug30961.phpt b/ext/reflection/tests/bug30961.phpt index 78067471d4..92ba6d1ab2 100755 --- a/ext/reflection/tests/bug30961.phpt +++ b/ext/reflection/tests/bug30961.phpt @@ -1,7 +1,7 @@ --TEST-- Bug #30961 (Wrong linenumber in ReflectionClass getStartLine()) --FILE-- -<? +<?php class a { } |