123456789101112131415161718192021222324 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- namespace lithium\tests\mocks\action;
- class MockCgiRequest extends \lithium\action\Request {
- protected function _init() {
- parent::_init();
- $this->_env = array(
- 'PLATFORM' => 'CGI',
- 'SCRIPT_FILENAME' => false,
- 'DOCUMENT_ROOT' => false,
- 'SCRIPT_URL' => '/lithium/app/webroot/index.php'
- );
- }
- }
- ?>
|