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