Skip to content

Commit

Permalink
Merge pull request #2331 from tmihalik/patch-2
Browse files Browse the repository at this point in the history
Update builder.c
  • Loading branch information
niden committed Apr 18, 2014
2 parents 7051615 + 056176c commit 6f614d3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions ext/mvc/model/query/builder.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/*
+------------------------------------------------------------------------+
| Phalcon Framework |
Expand Down Expand Up @@ -543,7 +542,7 @@ PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, getFrom){
}

/**
* Adds a INNER join to the query
* Adds a join to the query
*
*<code>
* $builder->join('Robots');
Expand Down Expand Up @@ -595,13 +594,11 @@ PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, join){
* $builder->innerJoin('Robots');
* $builder->innerJoin('Robots', 'r.id = RobotsParts.robots_id');
* $builder->innerJoin('Robots', 'r.id = RobotsParts.robots_id', 'r');
* $builder->innerJoin('Robots', 'r.id = RobotsParts.robots_id', 'r', 'LEFT');
*</code>
*
* @param string $model
* @param string $conditions
* @param string $alias
* @param string $type
* @return Phalcon\Mvc\Model\Query\Builder
*/
PHP_METHOD(Phalcon_Mvc_Model_Query_Builder, innerJoin){
Expand Down

0 comments on commit 6f614d3

Please sign in to comment.