diff options
| -rwxr-xr-x | ext/pdo/tests/pdo_018.inc | 2 | ||||
| -rwxr-xr-x | ext/pdo_mysql/tests/pdo_018.phpt | 2 | ||||
| -rwxr-xr-x | ext/pdo_oci/tests/pdo_018.phpt | 1 | ||||
| -rwxr-xr-x | ext/pdo_pgsql/tests/pdo_018.phpt | 2 | ||||
| -rwxr-xr-x | ext/pdo_sqlite/tests/pdo_018.phpt | 2 |
5 files changed, 5 insertions, 4 deletions
diff --git a/ext/pdo/tests/pdo_018.inc b/ext/pdo/tests/pdo_018.inc index ed8c17f841..4298ac48e2 100755 --- a/ext/pdo/tests/pdo_018.inc +++ b/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'; diff --git a/ext/pdo_mysql/tests/pdo_018.phpt b/ext/pdo_mysql/tests/pdo_018.phpt index 2cc56bcb47..cff3ad8726 100755 --- a/ext/pdo_mysql/tests/pdo_018.phpt +++ b/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 diff --git a/ext/pdo_oci/tests/pdo_018.phpt b/ext/pdo_oci/tests/pdo_018.phpt index 673efc3e25..bc038f20dd 100755 --- a/ext/pdo_oci/tests/pdo_018.phpt +++ b/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 diff --git a/ext/pdo_pgsql/tests/pdo_018.phpt b/ext/pdo_pgsql/tests/pdo_018.phpt index 99ccfe3648..635d9947b6 100755 --- a/ext/pdo_pgsql/tests/pdo_018.phpt +++ b/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 diff --git a/ext/pdo_sqlite/tests/pdo_018.phpt b/ext/pdo_sqlite/tests/pdo_018.phpt index 600d02b910..19b9190773 100755 --- a/ext/pdo_sqlite/tests/pdo_018.phpt +++ b/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 |
