summaryrefslogtreecommitdiff
path: root/Zend/tests/bug43703.phpt
blob: de4f8a89fdab791eef4c2e4ee03c742848759110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--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