123456789101112131415161718192021 |
- <?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\template\helper;
- class MockFormPostInfo extends \lithium\data\Model {
- protected $_schema = array(
- 'id' => array('type' => 'integer'),
- 'section' => array('type' => 'string'),
- 'notes' => array('type' => 'text'),
- 'created' => array('type' => 'datetime'),
- 'updated' => array('type' => 'datetime')
- );
- }
- ?>
|