summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/static_002.phpt
blob: 5c1a92a80603c29044958f1940eaf024d190be71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Traits with static methods referenced using variable.
--CREDITS--
Simas Toleikis simast@gmail.com
--FILE--
<?php

	trait TestTrait {
		public static function test() {
			return 'Test';
		}
	}

	class A {
		use TestTrait;
	}

	$class = "A";
	echo $class::test();

?>
--EXPECT--
Test