mirror of
https://github.com/dg/dibi.git
synced 2025-08-07 06:36:44 +02:00
Fluent: added missing annotations [Closes #191]
This commit is contained in:
@@ -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
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user