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--
Bug #29368 (The destructor is called when an exception is thrown from the constructor)
--FILE--
<?
<?php
class Foo
{

View File

@ -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'));

View File

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

View File

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

View File

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

View File

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