]> granicus.if.org Git - php/commitdiff
Fixed bug #64235 (Insteadof not work for class method in 5.4.11)
authorXinchen Hui <laruence@php.net>
Thu, 21 Feb 2013 10:18:41 +0000 (18:18 +0800)
committerXinchen Hui <laruence@php.net>
Thu, 21 Feb 2013 10:18:41 +0000 (18:18 +0800)
As we discussed with stefan, we think previous of allowing use with
classes is a bug, should be forbided, anyway, the error message should
be improved.

NEWS
Zend/tests/traits/bug64235.phpt [new file with mode: 0644]
Zend/tests/traits/bug64235b.phpt [new file with mode: 0644]
Zend/tests/traits/language015.phpt
Zend/tests/traits/language016.phpt
Zend/tests/traits/language017.phpt
Zend/zend_compile.c

diff --git a/NEWS b/NEWS
index e34b0c5d588c6ce32cfa86ba47a4d4fbf912a073..c9cc2b5c93558f1abbc3c9da076c5fd9101b24dc 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,8 @@ PHP                                                                        NEWS
 ?? ??? 2012, PHP 5.4.13
 
 - Core:
+  . Fixed bug #64235 (Insteadof not work for class method in 5.4.11).
+    (Laruence)
   . Implemented FR #64175 (Added HTTP codes as of RFC 6585). (Jonh Wendell)
   . Fixed bug #64142 (dval to lval different behavior on ppc64). (Remi)
   . Fixed bug #64070 (Inheritance with Traits failed with error). (Dmitry)
diff --git a/Zend/tests/traits/bug64235.phpt b/Zend/tests/traits/bug64235.phpt
new file mode 100644 (file)
index 0000000..d0a2a98
--- /dev/null
@@ -0,0 +1,34 @@
+--TEST--
+Bug #64235 (Insteadof not work for class method in 5.4.11)
+--FILE--
+<?php
+
+class TestParentClass
+{
+    public function method()
+    {
+        print_r('Parent method');
+        print "\n";
+    }
+}
+
+trait TestTrait
+{
+    public function method()
+    {
+        print_r('Trait method');
+        print "\n";
+    }
+}
+
+class TestChildClass extends TestParentClass
+{
+    use TestTrait
+    {
+        TestTrait::method as methodAlias;
+        TestParentClass::method insteadof TestTrait;
+    }
+}
+?>
+--EXPECTF--
+Fatal error: Class TestParentClass is not a trait, Only traits may be used in 'as' and 'insteadof' statements in %sbug64235.php on line %d
diff --git a/Zend/tests/traits/bug64235b.phpt b/Zend/tests/traits/bug64235b.phpt
new file mode 100644 (file)
index 0000000..a326ec0
--- /dev/null
@@ -0,0 +1,35 @@
+--TEST--
+Bug #64235 (Insteadof not work for class method in 5.4.11)
+--FILE--
+<?php
+
+class TestParentClass
+{
+    public function method()
+    {
+        print_r('Parent method');
+        print "\n";
+    }
+}
+
+trait TestTrait
+{
+    public function method()
+    {
+        print_r('Trait method');
+        print "\n";
+    }
+}
+
+class TestChildClass extends TestParentClass
+{
+    use TestTrait
+    {
+        TestTrait::method as methodAlias;
+        TestParentClass::method as TestParent;
+    }
+}
+
+?>
+--EXPECTF--
+Fatal error: Class TestParentClass is not a trait, Only traits may be used in 'as' and 'insteadof' statements in %sbug64235b.php on line %d
index df1f744841c9291bb2de66870efeac03045e2f35..0c9fb4afb2903180152b2b2e8599a85d60f3b716 100644 (file)
@@ -14,4 +14,4 @@ class C {
        }
 }
 --EXPECTF--
-Fatal error: Trait T2 is not used in %s on line %d
+Fatal error: Required Trait T2 wasn't added to C in %slanguage015.php on line %d
index e9281198e5384166a97f9bce04af9fd1062def85..1c6bbeabacbc02d1cc94047cd613c5e9191e5dc5 100644 (file)
@@ -14,4 +14,4 @@ class C {
        }
 }
 --EXPECTF--
-Fatal error: Trait T2 is not used in %s on line %d
+Fatal error: Required Trait T2 wasn't added to C in %slanguage016.php on line %d
index 56f9e2409c1cac8157fcbcf9ba87d08e57b3851a..539a05d02f16060701da055af469559a35ce6eb9 100644 (file)
@@ -14,4 +14,4 @@ class C {
        }
 }
 --EXPECTF--
-Fatal error: Trait T2 is not used in %s on line %d
+Fatal error: Required Trait T2 wasn't added to C in %slanguage017.php on line %d
index a3f4fe5dd606307be45c532225f1bf9c142633b3..0a1749dbd876bc806bc6cd628172c77c91f88252 100644 (file)
@@ -3859,12 +3859,16 @@ static void zend_check_trait_usage(zend_class_entry *ce, zend_class_entry *trait
 {
        zend_uint i;
 
+       if ((trait->ce_flags & ZEND_ACC_TRAIT) != ZEND_ACC_TRAIT) {
+               zend_error(E_COMPILE_ERROR, "Class %s is not a trait, Only traits may be used in 'as' and 'insteadof' statements", trait->name);
+       }
+
        for (i = 0; i < ce->num_traits; i++) {
                if (ce->traits[i] == trait) {
                        return;
                }
        }
-       zend_error(E_COMPILE_ERROR, "Trait %s is not used", trait->name);
+       zend_error(E_COMPILE_ERROR, "Required Trait %s wasn't added to %s", trait->name, ce->name);
 }
 /* }}} */