示例#1
0
 /**
  * Create the binded selector if not initialized yet
  * 
  * @return mixed 
  */
 protected function _createInstance()
 {
     if ($this->toSelector === null) {
         $this->instance = null;
         $this->toSelector = $this->_getClassSelector();
     }
     return ModuleClass::create($this->toSelector->toString());
 }