mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
24 lines
304 B
PHP
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
|