12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /* vim: set expandtab sw=4 ts=4 sts=4: */
- /**
- * Holds the PMA\DI\FactoryItem class
- *
- * @package PMA
- */
- namespace PMA\DI;
- require_once 'libraries/di/ReflectorItem.class.php';
- /**
- * Factory manager
- *
- * @package PMA\DI
- */
- class FactoryItem extends ReflectorItem
- {
- /**
- * Constructor
- *
- * @param Container $container Container
- * @param mixed $definition Definition
- */
- public function __construct(Container $container, $definition)
- {
- parent::__construct($container, $definition);
- }
- /**
- * Construct an instance
- *
- * @param array $params Parameters
- *
- * @return mixed
- */
- public function get($params = array())
- {
- return $this->invoke($params);
- }
- }
|