From 38128fbf9ea11a44d8b6deff6a1198de292676a1 Mon Sep 17 00:00:00 2001 From: Jan Endel Date: Wed, 13 Jun 2018 11:47:55 +0200 Subject: [PATCH] typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit for example fluent: $dibiConnection->select(‘id’) ->from(‘users’); will not pass static analysis although is completely valid code. --- src/Dibi/Fluent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dibi/Fluent.php b/src/Dibi/Fluent.php index fc70e342..d89ba061 100644 --- a/src/Dibi/Fluent.php +++ b/src/Dibi/Fluent.php @@ -15,7 +15,7 @@ namespace Dibi; * * @method Fluent select(...$field) * @method Fluent distinct() - * @method Fluent from($table, ...$args) + * @method Fluent from($table, ...$args = null) * @method Fluent where(...$cond) * @method Fluent groupBy(...$field) * @method Fluent having(...$cond)