fix calendar css, take 2. (#213)
[openemr.git] / interface / modules / zend_modules / library / Zend / Di / DependencyInjectionInterface.php
blob4acc8dfb8a01bd319b93b93ee04fd725b7ba6b12
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Di;
12 interface DependencyInjectionInterface extends LocatorInterface
14 /**
15 * Retrieve a new instance of a class
17 * Forces retrieval of a discrete instance of the given class, using the
18 * constructor parameters provided.
20 * @param mixed $name Class name or service alias
21 * @param array $params Parameters to pass to the constructor
22 * @return object|null
24 public function newInstance($name, array $params = array());