From df3432aa86f4fbba34286e1eab5655c69f306cea Mon Sep 17 00:00:00 2001
From: mark_story <mark@mark-story.com>
Date: Fri, 11 Jun 2010 09:55:39 -0400
Subject: [PATCH] Updating doc blocks in ModelBehavior.  Refs #810

---
 cake/libs/model/model_behavior.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cake/libs/model/model_behavior.php b/cake/libs/model/model_behavior.php
index 2606bb49a..000b3186d 100644
--- a/cake/libs/model/model_behavior.php
+++ b/cake/libs/model/model_behavior.php
@@ -81,7 +81,7 @@ class ModelBehavior extends Object {
  *
  * @param object $model Model using this behavior
  * @param array $queryData Data used to execute this query, i.e. conditions, order, etc.
- * @return mixed False if the operation should abort. Any other result will continue.
+ * @return mixed False if the operation should abort. An array will replace the value of $query.
  * @access public
  */
 	function beforeFind(&$model, $query) { }
@@ -92,7 +92,7 @@ class ModelBehavior extends Object {
  * @param object $model Model using this behavior
  * @param mixed $results The results of the find operation
  * @param boolean $primary Whether this model is being queried directly (vs. being queried as an association)
- * @return mixed Result of the find operation
+ * @return mixed An array value will replace the value of $results - any other value will be ignored.
  * @access public
  */
 	function afterFind(&$model, $results, $primary) { }