protected function __construct()
 {
     parent::__construct();
     $this->instance = $this->prepareProxiedInstance();
 }
Example #2
0
 protected function __construct()
 {
     parent::__construct();
     $this->initializeMessageListeners();
 }
 protected function __construct()
 {
     parent::__construct();
     $this->extensionConfigurations = module_invoke_all('dc_datasource');
     $this->handlerConfigurations = module_invoke_all($this->getHookName());
 }
    protected function __construct() {
        parent::__construct();
        $this->cache = $this->initializeCache('metadata');

        $this->initiateLoaders();
    }
Example #5
0
 /**
  * @param callable $callback
  * @param string $name
  * @param bool $singleton
  * @param bool $cloneable
  */
 public function __construct(callable $callback, $name = null, $singleton = true, $cloneable = false)
 {
     parent::__construct($name, $singleton, $cloneable);
     $this->callback = $callback;
 }
 protected function __construct()
 {
     parent::__construct();
     $this->initiateLoaders();
 }
 /**
  * @param string $class
  * @param string $name
  * @param bool $singleton
  * @param bool $cloneable
  */
 public function __construct($class, $name = null, $singleton = true, $cloneable = false)
 {
     parent::__construct($name, $singleton, $cloneable);
     $this->class = $class;
 }