1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-04 13:17:58 +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 73790f4321
commit 38128fbf9e

View File

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