Browse Source

- Interface name was changed

PHP-5.1
Marcus Boerger 21 years ago
parent
commit
360fbc09b7
  1. 2
      ext/pdo/tests/pdo_018.inc
  2. 2
      ext/pdo_mysql/tests/pdo_018.phpt
  3. 1
      ext/pdo_oci/tests/pdo_018.phpt
  4. 2
      ext/pdo_pgsql/tests/pdo_018.phpt
  5. 2
      ext/pdo_sqlite/tests/pdo_018.phpt

2
ext/pdo/tests/pdo_018.inc

@ -1,6 +1,6 @@
<?php # vim:ft=php
class TestBase implements Serializeable
class TestBase implements Serializable
{
public $BasePub = 'Public';
protected $BasePro = 'Protected';

2
ext/pdo_mysql/tests/pdo_018.phpt

@ -3,7 +3,7 @@ PDO_MySQL: PDO Unserializing
--SKIPIF--
<?php # vim:ft=php
require_once('skipif.inc');
if (!interface_exists('Serializeable')) die ('skip Interface Serializeable does not exist');
if (!interface_exists('Serializable')) die ('skip Interface Serializable does not exist');
?>
--FILE--
<?php

1
ext/pdo_oci/tests/pdo_018.phpt

@ -3,6 +3,7 @@ PDO_OCI: PDO Unserializing
--SKIPIF--
<?php # vim:ft=php
require_once('skipif.inc');
if (!interface_exists('Serializable')) die ('skip Interface Serializable does not exist');
?>
--FILE--
<?php

2
ext/pdo_pgsql/tests/pdo_018.phpt

@ -3,7 +3,7 @@ PDO_PGSQL: PDO Unserializing
--SKIPIF--
<?php # vim:ft=php
require_once('skipif.inc');
if (!interface_exists('Serializeable')) die ('skip Interface Serializeable does not exist');
if (!interface_exists('Serializable')) die ('skip Interface Serializable does not exist');
?>
--FILE--
<?php

2
ext/pdo_sqlite/tests/pdo_018.phpt

@ -3,7 +3,7 @@ PDO_SQLite: PDO Unserializing
--SKIPIF--
<?php # vim:ft=php
require_once('skipif.inc');
if (!interface_exists('Serializeable')) die ('skip Interface Serializeable does not exist');
if (!interface_exists('Serializable')) die ('skip Interface Serializable does not exist');
?>
--FILE--
<?php

Loading…
Cancel
Save