]> granicus.if.org Git - php/commitdiff
Change to correct syntax.
authorMarcus Boerger <helly@php.net>
Wed, 21 Jan 2004 22:36:49 +0000 (22:36 +0000)
committerMarcus Boerger <helly@php.net>
Wed, 21 Jan 2004 22:36:49 +0000 (22:36 +0000)
# The test will still fail though.

tests/classes/interface_doubled.phpt

index dbc23de75453b5a76efedfb3558729bd85ab6839..4c41ce1172c1ba28dfb3ec8ff7873edc506e3347 100644 (file)
@@ -13,11 +13,11 @@ interface if_b {
        abstract function f_b();
 }
 
-interface if_c implements if_a, if_b {
+interface if_c extends if_a, if_b {
        abstract function f_c();
 }
 
-interface if_d extends if_a implements if_b {
+interface if_d extends if_a, if_b {
        abstract function f_d();
 }
 
@@ -25,7 +25,7 @@ interface if_e {
        abstract function f_d();
 }
 
-interface if_f extends if_e implements if_a, if_b, if_c, if_d, if_e {
+interface if_f extends if_e, if_a, if_b, if_c, if_d, if_e {
 }
 
 class base {