1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- class sfConsoleRequest extends sfRequest
- {
-
- public function initialize(sfEventDispatcher $dispatcher, $parameters = array(), $attributes = array(), $options = array())
- {
- parent::initialize($dispatcher, $parameters, $attributes, $options);
- $this->getParameterHolder()->add($_SERVER['argv']);
- }
- }
|