From: Marcus Boerger Date: Wed, 21 Jan 2004 22:36:49 +0000 (+0000) Subject: Change to correct syntax. X-Git-Tag: php_ibase_before_split~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3a19e915a17d5bf0fe6195932c993f3ee1162e6;p=php Change to correct syntax. # The test will still fail though. --- diff --git a/tests/classes/interface_doubled.phpt b/tests/classes/interface_doubled.phpt index dbc23de754..4c41ce1172 100644 --- a/tests/classes/interface_doubled.phpt +++ b/tests/classes/interface_doubled.phpt @@ -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 {