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