static_004.phpt 322 B

12345678910111213141516171819202122
  1. --TEST--
  2. Traits with __callStatic magic method.
  3. --CREDITS--
  4. Simas Toleikis simast@gmail.com
  5. --FILE--
  6. <?php
  7. trait TestTrait {
  8. public static function __callStatic($name, $arguments) {
  9. return $name;
  10. }
  11. }
  12. class A {
  13. use TestTrait;
  14. }
  15. echo A::Test();
  16. ?>
  17. --EXPECT--
  18. Test