diff --git a/ext/mvc/model/query/builder.c b/ext/mvc/model/query/builder.c index 0e39791d70d..a72f9a4ebd1 100644 --- a/ext/mvc/model/query/builder.c +++ b/ext/mvc/model/query/builder.c @@ -1,4 +1,3 @@ - /* +------------------------------------------------------------------------+ | Phalcon Framework | @@ -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 * * * $builder->join('Robots'); @@ -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'); * * * @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){