summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/static_004.phpt
blob: e7ceea881c163b9933ba8134efc5b31c48285fb3 (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