Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/traits/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/traits/static_forward_static_call.phpt

--TEST--
Traits and forward_static_call().
--CREDITS--
Simas Toleikis simast@gmail.com
--FILE--
<?php

	trait TestTrait {
		public static function test() {
			return 'Forwarded '.forward_static_call(array('A', 'test'));
		}
	}

	class A {
		public static function test() {
			return "Test A";
		}
	}

	class B extends A {
		use TestTrait;
	}

	echo B::test();

?>
--EXPECT--
Forwarded Test A