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