blob: c360f457f0cbb82c79cca576432c3ce5546f9a87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--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
|