1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
Files
archived-php-src/Zend/tests/traits/static_004.phpt
T
2020-02-03 22:52:20 +01:00

23 lines
322 B
PHP

--TEST--
Traits with __callStatic magic method.
--CREDITS--
Simas Toleikis simast@gmail.com
--FILE--
<?php
trait TestTrait {
public static function __callStatic($name, $arguments) {
return $name;
}
}
class A {
use TestTrait;
}
echo A::Test();
?>
--EXPECT--
Test