No short-tags!

This commit is contained in:
foobar 2005-06-17 16:40:05 +00:00
parent 15563f8d91
commit a491b82c4c
6 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
--TEST-- --TEST--
Bug #29368 (The destructor is called when an exception is thrown from the constructor) Bug #29368 (The destructor is called when an exception is thrown from the constructor)
--FILE-- --FILE--
<? <?php
class Foo class Foo
{ {

View File

@ -1,7 +1,7 @@
--TEST-- --TEST--
Bug #31720 (Invalid object callbacks not caught in array_walk()) Bug #31720 (Invalid object callbacks not caught in array_walk())
--FILE-- --FILE--
<? <?php
$array = array('at least one element'); $array = array('at least one element');
array_walk($array, array($nonesuchvar,'show')); array_walk($array, array($nonesuchvar,'show'));

View File

@ -1,7 +1,7 @@
--TEST-- --TEST--
Bug # 32226 (SEGV with exception handler on non existing instance) Bug # 32226 (SEGV with exception handler on non existing instance)
--FILE-- --FILE--
<? <?php
class A class A
{ {

View File

@ -1,7 +1,7 @@
--TEST-- --TEST--
Bug #33277 (private method accessed by child class) Bug #33277 (private method accessed by child class)
--FILE-- --FILE--
<? <?php
class foo { class foo {
private function bar() { private function bar() {
echo "private!\n"; echo "private!\n";

View File

@ -1,7 +1,7 @@
--TEST-- --TEST--
Bug #30856 (ReflectionClass::getStaticProperties segfaults) Bug #30856 (ReflectionClass::getStaticProperties segfaults)
--FILE-- --FILE--
<? <?php
class bogus { class bogus {
const C = 'test'; const C = 'test';
static $a = bogus::C; static $a = bogus::C;

View File

@ -1,7 +1,7 @@
--TEST-- --TEST--
Bug #30961 (Wrong linenumber in ReflectionClass getStartLine()) Bug #30961 (Wrong linenumber in ReflectionClass getStartLine())
--FILE-- --FILE--
<? <?php
class a class a
{ {
} }