Exemplo n.º 1
0
 /**
  * Start Yaf_Application
  */
 public function run()
 {
     if ($this->_running == true) {
         throw new Yaf_Exception('An application instance already run');
     } else {
         $this->_running = true;
         return $this->_dispatcher->dispatch();
     }
 }