-
-
Save weierophinney/1887986 to your computer and use it in GitHub Desktop.
Zend\Di For MWop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace MWOP { | |
class Foo | |
{ | |
public $bar; | |
public function setBar(BarInterface $bar) | |
{ | |
$this->bar = $bar; | |
} | |
} | |
interface BarInterface | |
{ | |
} | |
class Bar implements BarInterface | |
{ | |
} | |
} | |
namespace { | |
include 'Zend_Di-2.0.0beta2.phar'; | |
//include 'zf2bootstrap.php'; | |
$di = new Zend\Di\Di; | |
$config = array( | |
'instance' => array( | |
'MWOP\Foo' => array( | |
'parameters' => array( | |
'bar' => 'MWOP\Bar' | |
) | |
) | |
) | |
); | |
$di->configure(new Zend\Di\Configuration($config)); | |
$foo = $di->get('MWOP\Foo'); | |
var_dump($foo); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment