php-src/Zend/tests/traits/static_001.phpt

22 lines
265 B
Plaintext
Raw Normal View History

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