Skip to content

Commit 4f9757b

Browse files
committedMay 6, 2015
Merge pull request #10269 from tmihalik/patch-3
order -> orderBy (order is depreceted)
2 parents 1d9adb2 + 12e4b3a commit 4f9757b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎phalcon/mvc/model/criteria.zep

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use Phalcon\Db\Column;
3939
* ->andWhere("year < 2000")
4040
* ->bind(array("type" => "mechanical"))
4141
* ->limit(5, 10)
42-
* ->order("name")
42+
* ->orderBy("name")
4343
* ->execute();
4444
*</code>
4545
*/

0 commit comments

Comments
 (0)
Please sign in to comment.