php-src/Zend/tests/traits/static_002.phpt
2020-02-03 22:52:20 +01:00

24 lines
336 B
PHP

--TEST--
Traits with static methods referenced using variable.
--CREDITS--
Simas Toleikis simast@gmail.com
--FILE--
<?php
trait TestTrait {
public static function test() {
return 'Test';
}
}
class A {
use TestTrait;
}
$class = "A";
echo $class::test();
?>
--EXPECT--
Test