コード例 #1
0
 /**
  * Init the Symfony Console Provider
  * 
  * @return BaseController
  */
 protected function initSymfonyConsoleProvider()
 {
     if (!$this->mvc->hasCvpp('symfony.console')) {
         $this->mvc->registerProvider(new ConsoleSymfonyProvider(array('modules' => $this->mvc->setModules(), 'commands' => array(new ListCommand()))));
     }
     return $this;
 }