Updating docblocks

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6421 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2008-02-01 02:03:04 +00:00
parent 18c2d9d446
commit 7d39cad13f

View file

@ -193,8 +193,8 @@ class Model extends Overloadable {
*/ */
var $hasAndBelongsToMany = array(); var $hasAndBelongsToMany = array();
/** /**
* List of behaviors to use. Settings can be passed to behaviors * List of behaviors to load when the model object is initialized. Settings can be
* by using the behavior name as index. Eg: * passed to behaviors by using the behavior name as index. Eg:
* *
* array('Translate', 'MyBehavior' => array('setting1' => 'value1')) * array('Translate', 'MyBehavior' => array('setting1' => 'value1'))
* *
@ -203,7 +203,7 @@ class Model extends Overloadable {
*/ */
var $actsAs = null; var $actsAs = null;
/** /**
* Behavior objects * Holds the Behavior objects currently bound to this model, keyed by behavior name
* *
* @var array * @var array
* @access public * @access public