1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/Zend/tests/bug43703.phpt
2008-01-09 07:57:42 +00:00

24 lines
304 B
PHP

--TEST--
Bug #43703 (Signature compatibility check broken)
--FILE--
<?php
class JoinPoint
{
}
abstract class Pointcut
{
abstract public function evaluate(JoinPoint $joinPoint);
}
class Read extends Pointcut
{
public function evaluate(Joinpoint $joinPoint)
{
}
}
?>
DONE
--EXPECT--
DONE