ru_php/Zend/tests/inheritance/bug71428.2.phpt

23 lines
558 B
PHP

--TEST--
bug #71428.2: inheritance of ye olde dynamic interfaces
--EXTENSIONS--
pdo
--FILE--
<?php
interface StatementInterface {
public function fetch(int $first = PDO::FETCH_BOTH, int $second = PDO::FETCH_ORI_NEXT, int $third = 0);
}
class Statement extends PDOStatement implements StatementInterface {}
interface StatementInterface1 {
public function fetch(int $first = PDO::FETCH_ASSOC, int $second = PDO::FETCH_ORI_PRIOR, int $third = 1);
}
class Statement1 extends PDOStatement implements StatementInterface1 {}
echo "ok";
?>
--EXPECT--
ok