DI\ContainerBuilder::__construct PHP Method

__construct() public method

public __construct ( string $containerClass = 'DI\Container' )
$containerClass string Name of the container class, used to create the container.
    public function __construct($containerClass = 'DI\\Container')
    {
        $this->containerClass = $containerClass;
    }

Usage Example

 /**
  * Calls the parent constructor with the given class name and sets a new instance of definitionsProvider\dependency\handler\DontHandle as dependencyHandler so this new feature
  * is disabled by default.
  *
  * @param string $containerClass The class name of the container that will be created
  */
 public function __construct($containerClass = Container::class)
 {
     parent::__construct($containerClass);
     $this->setDependencyHandler(new definitionsProvider\dependency\handler\DontHandle());
 }