/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
presto-player
/
vendor
/
level-2
/
dice
/
tests
/
TestData
/
Upload File
HOME
<?php /* @description Dice - A minimal Dependency Injection Container for PHP * * @author Tom Butler tom@r.je * * @copyright 2012-2018 Tom Butler <tom@r.je> | https:// r.je/dice.html * * @license http:// www.opensource.org/licenses/bsd-license.php BSD License * * @version 3.0 */ namespace PrestoPlayer\Foo { class A { } class B { public $a; public function __construct(A $a) { $this->a = $a; } } class ExtendedA extends A { } class C { public $a; public function __construct(\Bar\A $a) { $this->a = $a; } } } namespace PrestoPlayer\Bar { class A { } class B { } }