📅  最后修改于: 2022-03-11 14:54:04.725000             🧑  作者: Mango
// short example of what DIC does
class Foo
{
public function __construct(Bar $bar)
{
}
}
$foo = $container->get('Foo');
// Which is equivalent to the following
$bar = new Bar;
$foo = new Foo($bar);