PageRenderTime 46ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/cake/tests/test_app/models/persister_two.php

https://github.com/hardsshah/bookmarks
PHP | 35 lines | 8 code | 2 blank | 25 comment | 0 complexity | 67295baa849ff8e0f460ebc60613e1cc MD5 | raw file
  1. <?php
  2. /* SVN FILE: $Id$ */
  3. /**
  4. * Test App Comment Model
  5. *
  6. *
  7. *
  8. * PHP versions 4 and 5
  9. *
  10. * CakePHP : Rapid Development Framework (http://www.cakephp.org)
  11. * Copyright 2006-2008, Cake Software Foundation, Inc.
  12. *
  13. * Licensed under The MIT License
  14. * Redistributions of files must retain the above copyright notice.
  15. *
  16. * @filesource
  17. * @copyright Copyright 2006-2008, Cake Software Foundation, Inc.
  18. * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
  19. * @package cake
  20. * @subpackage cake.tests.test_app.models
  21. * @since CakePHP v 1.2.0.7726
  22. * @version $Revision$
  23. * @modifiedby $LastChangedBy$
  24. * @lastmodified $Date$
  25. * @license http://www.opensource.org/licenses/mit-license.php The MIT License
  26. */
  27. class PersisterTwo extends AppModel {
  28. var $useTable = 'posts';
  29. var $name = 'PersisterTwo';
  30. var $actsAs = array('PersisterOneBehavior');
  31. var $hasMany = array('Comment');
  32. }
  33. ?>