예제 #1
0
 public function getComponentInstance(PicoContainer $container)
 {
     require_once $this->includeFileName;
     if (class_exists($this->getDelegate()->getComponentImplementation())) {
         return parent::getComponentInstance($container);
     } else {
         throw new LazyIncludedClassNotDefinedException($this->getDelegate()->getComponentImplementation());
     }
 }