From 34bdd5f267cfe7653a7d62ada0c0dff1cb60a477 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 f0c5ee7b..ea54eec7 100644 --- a/src/Dibi/Fluent.php +++ b/src/Dibi/Fluent.php @@ -13,7 +13,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)