summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Matthews <[email protected]>2010-02-13 14:17:25 +0000
committerJamie Matthews <[email protected]>2010-02-13 14:17:25 +0000
commit0037b559f42c7e51bcd556a2f712d36df0b3560d (patch)
tree8d7dfe4772ecfd8fe27444150f75b7e8e7b38ee5
parent06ea4abeb7f06e57f6829789b4694297ed304dc6 (diff)
Clarified comments on find_one and find_many
-rw-r--r--idiorm.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/idiorm.php b/idiorm.php
index 1276f8e..d7552d6 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -230,8 +230,7 @@
/**
* Tell the ORM that you are expecting a single result
- * back from your query. If this method has been called
- * in your chain, when you call run() you will receive
+ * back from your query, and execute it. Will return
* a single instance of the ORM class, or false if no
* rows were returned.
* As a shortcut, you may supply an ID as a parameter
@@ -248,8 +247,7 @@
/**
* Tell the ORM that you are expecting multiple results
- * from your query. If this method has been called in your
- * chain, when you call run() you will receive an array
+ * from your query, and execute it. Will return an array
* of instances of the ORM class, or an empty array if
* no rows were returned.
*/