1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
- * (c) 2004-2006 Sean Kerr <sean@code-box.org>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- *
- * @package symfony
- * @subpackage request
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @author Sean Kerr <sean@code-box.org>
- * @version SVN: $Id: sfConsoleRequest.class.php 11313 2008-09-03 17:28:33Z fabien $
- */
- class sfConsoleRequest extends sfRequest
- {
- /**
- * Initializes this sfRequest.
- *
- * @param sfEventDispatcher $dispatcher An sfEventDispatcher instance
- * @param array $parameters An associative array of initialization parameters
- * @param array $attributes An associative array of initialization attributes
- * @param array $options An associative array of options
- *
- * @return bool true, if initialization completes successfully, otherwise false
- *
- * @throws <b>sfInitializationException</b> If an error occurs while initializing this sfRequest
- */
- public function initialize(sfEventDispatcher $dispatcher, $parameters = array(), $attributes = array(), $options = array())
- {
- parent::initialize($dispatcher, $parameters, $attributes, $options);
- $this->getParameterHolder()->add($_SERVER['argv']);
- }
- }
|