1234567891011121314151617181920 |
- <?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\net\http;
- class Template extends \lithium\core\Object {
- public function __construct(array $config = array()) {
- $config['response']->headers('Custom', 'Value');
- }
- public function render() {}
- }
- ?>
|