1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 22:26:43 +02:00

Fluent: added missing annotations [Closes #191]

This commit is contained in:
Petr Soukup
2015-10-27 13:07:40 +01:00
committed by David Grudl
parent e9c677c750
commit 044fe4fc2a

View File

@@ -11,17 +11,22 @@ namespace Dibi;
/** /**
* dibi SQL builder via fluent interfaces. EXPERIMENTAL! * dibi SQL builder via fluent interfaces. EXPERIMENTAL!
* *
* @method Fluent select($field) * @method Fluent select(...$field)
* @method Fluent distinct() * @method Fluent distinct()
* @method Fluent from($table) * @method Fluent from($table)
* @method Fluent where($cond) * @method Fluent where(...$cond)
* @method Fluent groupBy($field) * @method Fluent groupBy(...$field)
* @method Fluent having($cond) * @method Fluent having(...$cond)
* @method Fluent orderBy($field) * @method Fluent orderBy(...$field)
* @method Fluent limit(int $limit) * @method Fluent limit(int $limit)
* @method Fluent offset(int $offset) * @method Fluent offset(int $offset)
* @method Fluent leftJoin($table) * @method Fluent join(...$table)
* @method Fluent on($cond) * @method Fluent leftJoin(...$table)
* @method Fluent innerJoin(...$table)
* @method Fluent rightJoin(...$table)
* @method Fluent outerJoin(...$table)
* @method Fluent on(...$cond)
* @method Fluent using(...$cond)
*/ */
class Fluent implements IDataSource class Fluent implements IDataSource
{ {