From 408aac47986206ebf9d329f21526e3dc3cdce31f Mon Sep 17 00:00:00 2001
From: mark_story <mark@mark-story.com>
Date: Tue, 21 May 2013 15:45:22 -0400
Subject: [PATCH] Update return types.

---
 lib/Cake/Model/Datasource/DboSource.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/Cake/Model/Datasource/DboSource.php b/lib/Cake/Model/Datasource/DboSource.php
index 97f7fb567..005eca952 100644
--- a/lib/Cake/Model/Datasource/DboSource.php
+++ b/lib/Cake/Model/Datasource/DboSource.php
@@ -641,7 +641,6 @@ class DboSource extends DataSource {
  * Returns an array of all result rows for a given SQL query.
  * Returns false if no rows matched.
  *
- *
  * ### Options
  *
  * - `cache` - Returns the cached version of the query, if exists and stores the result in cache.
@@ -652,7 +651,7 @@ class DboSource extends DataSource {
  * @param string $sql SQL statement
  * @param array $params parameters to be bound as values for the SQL statement
  * @param array $options additional options for the query.
- * @return array Array of resultset rows, or false if no rows matched
+ * @return boolean|array Array of resultset rows, or false if no rows matched
  */
 	public function fetchAll($sql, $params = array(), $options = array()) {
 		if (is_string($options)) {