]> granicus.if.org Git - php/commitdiff
- One more test fix
authorAndi Gutmans <andi@php.net>
Wed, 20 Oct 2004 22:36:32 +0000 (22:36 +0000)
committerAndi Gutmans <andi@php.net>
Wed, 20 Oct 2004 22:36:32 +0000 (22:36 +0000)
tests/classes/interface_must_be_implemented.phpt

index 82ddf24df88521e4c9c6be2ed29ece294c611ac0..1e0667eb5fd2065c01130e1a8335d03760a67685 100644 (file)
@@ -6,7 +6,7 @@ ZE2 An interface must be implemented
 <?php
 
 interface if_a {
-       abstract function f_a();
+       function f_a();
 }
        
 class derived_a implements if_a {