You are here

interface InstantiatorInterface in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php \Symfony\Component\DependencyInjection\LazyProxy\Instantiator\InstantiatorInterface
  2. 8 vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php \Doctrine\Instantiator\InstantiatorInterface
Same name and namespace in other branches
  1. 8.0 vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php \Doctrine\Instantiator\InstantiatorInterface

Instantiator provides utility methods to build objects without invoking their constructors

@author Marco Pivetta <ocramius@gmail.com>

Hierarchy

Expanded class hierarchy of InstantiatorInterface

All classes that implement InstantiatorInterface

File

vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php, line 27

Namespace

Doctrine\Instantiator
View source
interface InstantiatorInterface {

  /**
   * @param string $className
   *
   * @return object
   *
   * @throws \Doctrine\Instantiator\Exception\ExceptionInterface
   */
  public function instantiate($className);

}

Members