summaryrefslogtreecommitdiff
path: root/Zend/tests/abstract-static.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/abstract-static.phpt')
-rw-r--r--Zend/tests/abstract-static.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/Zend/tests/abstract-static.phpt b/Zend/tests/abstract-static.phpt
deleted file mode 100644
index 9db88fc4c8..0000000000
--- a/Zend/tests/abstract-static.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-Test for abstract static classes
---FILE--
-<?php
-abstract class ezcDbHandler extends PDO
-{
- public function __construct( $dbParams, $dsn )
- {
- $user = null;
- $pass = null;
- $driverOptions = null;
- }
-
- abstract static public function getName();
-
- static public function hasFeature( $feature )
- {
- return false;
- }
-}
-?>
-DONE
---EXPECT--
-DONE