1234567891011121314151617181920212223 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2012, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- namespace lithium\tests\mocks\util;
- class MockStringObject extends \lithium\template\view\Renderer {
- public $message = 'custom object';
- public function render($template, $data = array(), array $options = array()) {
- }
- public function __toString() {
- return $this->message;
- }
- }
- ?>
|