summaryrefslogtreecommitdiff
path: root/Zend/tests/bug73987_1.phpt
blob: 010987ea5f67164dce78a9caba7f3f0fa6440a8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Bug #73987 (Method compatibility check looks to original definition and not parent - return types interface)
--FILE--
<?php

interface I {
  public function example();
}
class A implements I {
  public function example(): int { } // compatible with I::example
}
class B extends A {
  public function example(): string { } // compatible with I::example
}

?>
--EXPECTF--
Fatal error: Declaration of B::example(): string must be compatible with A::example(): int in %s