Skip to content

Commit 9257164

Browse files
committed
rename interfaces
1 parent 0bf46a7 commit 9257164

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/tests/type_declarations/abstract_generics/extended_interface_redeclares_method.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Abstract generic type behaviour in extended interface which redeclares method
33
--FILE--
44
<?php
55

6-
interface I1<T> {
6+
interface I<T> {
77
public function foo(T $param): int;
88
}
99

10-
interface I2<S> extends I1<S> {
10+
interface J<S> extends I<S> {
1111
public function foo(S $param): int;
1212
}
1313

0 commit comments

Comments
 (0)