1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-07 06:36:44 +02:00
for example fluent:

$dibiConnection->select(‘id’)
    ->from(‘users’);

will not pass static analysis although is completely valid code.
This commit is contained in:
Jan Endel
2018-06-13 11:47:55 +02:00
committed by David Grudl
parent 5a7543a5a6
commit 34bdd5f267

View File

@@ -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)