Skip to content

Commit

Permalink
Merge pull request phalcon#879 from quasipickle/patch-1
Browse files Browse the repository at this point in the history
Update simple.c
  • Loading branch information
niden committed Jul 18, 2013
2 parents b906c43 + 7d043f9 commit 3046598
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions ext/mvc/model/resultset/simple.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/*
+------------------------------------------------------------------------+
| Phalcon Framework |
Expand Down Expand Up @@ -44,7 +43,7 @@
/**
* Phalcon\Mvc\Model\Resultset\Simple
*
* Simple resultsets only contains a complete objects
* Simple resultsets only contains complete objects.
* This class builds every complete object as it is required
*/

Expand Down Expand Up @@ -137,7 +136,7 @@ PHP_METHOD(Phalcon_Mvc_Model_Resultset_Simple, __construct){
}

/**
* Check whether internal resource has rows to fetch
* Check whether the internal resource has rows to fetch
*
* @return boolean
*/
Expand Down Expand Up @@ -252,7 +251,7 @@ PHP_METHOD(Phalcon_Mvc_Model_Resultset_Simple, valid){

/**
* Returns a complete resultset as an array, if the resultset has a big number of rows
* it could consume more memory than currently it does. Export the resultset to an array
* it could consume more memory than it currently does. Exporting the resultset to an array
* couldn't be faster with a large number of records
*
* @param boolean $renameColumns
Expand Down Expand Up @@ -465,7 +464,7 @@ PHP_METHOD(Phalcon_Mvc_Model_Resultset_Simple, serialize){
}

/**
* Unserializing a resultset will allow to only works on the rows present in the saved state
* Unserializing a resultset only works on the rows present in the saved state
*
* @param string $data
*/
Expand Down

0 comments on commit 3046598

Please sign in to comment.