From 656cbfc40cb6e910f4e3b55774c814fc0f52100d Mon Sep 17 00:00:00 2001 From: MartyIX Date: Tue, 16 Sep 2014 08:58:25 +0200 Subject: [PATCH] DibiFluent: add `leftJoin` and `on` to phpdoc. --- dibi/libs/DibiFluent.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dibi/libs/DibiFluent.php b/dibi/libs/DibiFluent.php index 05206599..bdf22221 100644 --- a/dibi/libs/DibiFluent.php +++ b/dibi/libs/DibiFluent.php @@ -24,6 +24,8 @@ * @method DibiFluent orderBy($field) * @method DibiFluent limit(int $limit) * @method DibiFluent offset(int $offset) + * @method DibiFluent leftJoin($table) + * @method DibiFluent on($cond) */ class DibiFluent extends DibiObject implements IDataSource {