From c8dfb1f8635a88c0210ab856c8ed176bf2b9f69e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20K=C3=A1cha?= Date: Thu, 28 Jun 2018 14:25:20 +0200 Subject: [PATCH] Dibi\Fluent: add annotations for methods and(), asc(), desc() #298 (#299) --- src/Dibi/Fluent.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Dibi/Fluent.php b/src/Dibi/Fluent.php index d89ba061..198d24ba 100644 --- a/src/Dibi/Fluent.php +++ b/src/Dibi/Fluent.php @@ -29,7 +29,10 @@ namespace Dibi; * @method Fluent outerJoin(...$table) * @method Fluent as(...$field) * @method Fluent on(...$cond) + * @method Fluent and(...$cond) * @method Fluent using(...$cond) + * @method Fluent asc() + * @method Fluent desc() */ class Fluent implements IDataSource {