Source for file jCmdlineCoordinator.class.php

Documentation is available at jCmdlineCoordinator.class.php

  1. <?php
  2. /**
  3. @package      jelix
  4. @subpackage   core
  5. @author       Christophe THIRIOT
  6. @copyright    2008 Christophe THIRIOT
  7. @link         http://www.jelix.org
  8. @licence      GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  9. */
  10.  
  11. /**
  12.  * The command line version of jCoordinator
  13.  *
  14.  * This allows us to handle exit code of commands properly
  15.  * @package  jelix
  16.  * @subpackage core
  17.  */
  18. class jCmdlineCoordinator extends jCoordinator{
  19.     /**
  20.     * main method : launch the execution of the action.
  21.     *
  22.     * This method should be called in a Command line entry point.
  23.     * @param  jRequestCmdline  $request the command line request object
  24.     */
  25.     public function process($request){
  26.         parent::process($request);
  27.         exit($this->response->getExitCode());
  28.     }
  29. }

Documentation generated on Thu, 22 Mar 2012 22:14:08 +0100 by phpDocumentor 1.4.3