comparison cake/tests/test_app/models/behaviors/persister_one_behavior.php @ 0:261e66bd5a0c

hg init
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Sun, 24 Jul 2011 21:08:31 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:261e66bd5a0c
1 <?php
2 /**
3 * Behavior for binding management.
4 *
5 * Behavior to simplify manipulating a model's bindings when doing a find operation
6 *
7 * PHP versions 4 and 5
8 *
9 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
10 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
11 *
12 * Licensed under The MIT License
13 * Redistributions of files must retain the above copyright notice.
14 *
15 * @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
16 * @link http://cakephp.org CakePHP(tm) Project
17 * @package cake
18 * @subpackage cake.tests.test_app.models
19 * @since CakePHP(tm) v 1.2.0.5669
20 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
21 */
22
23 /**
24 * Behavior to allow for dynamic and atomic manipulation of a Model's associations used for a find call. Most useful for limiting
25 * the amount of associations and data returned.
26 *
27 * @package cake
28 * @subpackage cake.cake.console.libs
29 */
30 class PersisterOneBehaviorBehavior extends ModelBehavior {
31 }