MockFormPostInfo.php 555 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Lithium: the most rad php framework
  4. *
  5. * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
  6. * @license http://opensource.org/licenses/bsd-license.php The BSD License
  7. */
  8. namespace lithium\tests\mocks\template\helper;
  9. class MockFormPostInfo extends \lithium\data\Model {
  10. protected $_schema = array(
  11. 'id' => array('type' => 'integer'),
  12. 'section' => array('type' => 'string'),
  13. 'notes' => array('type' => 'text'),
  14. 'created' => array('type' => 'datetime'),
  15. 'updated' => array('type' => 'datetime')
  16. );
  17. }
  18. ?>