Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | final class SkipInterfaceBasedErrors implements InterfaceBased |
||
13 | { |
||
14 | /** @var InterfaceBased */ |
||
15 | private $next; |
||
16 | |||
17 | public function __construct(InterfaceBased $next) |
||
18 | { |
||
19 | $this->next = $next; |
||
20 | } |
||
21 | |||
22 | public function __invoke(ReflectionClass $fromInterface, ReflectionClass $toInterface) : Changes |
||
28 | } |
||
29 | } |
||
31 |