mirror of
https://github.com/dg/dibi.git
synced 2025-08-06 14:16:39 +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!
|
||||
*
|
||||
* @method Fluent select($field)
|
||||
* @method Fluent select(...$field)
|
||||
* @method Fluent distinct()
|
||||
* @method Fluent from($table)
|
||||
* @method Fluent where($cond)
|
||||
* @method Fluent groupBy($field)
|
||||
* @method Fluent having($cond)
|
||||
* @method Fluent orderBy($field)
|
||||
* @method Fluent where(...$cond)
|
||||
* @method Fluent groupBy(...$field)
|
||||
* @method Fluent having(...$cond)
|
||||
* @method Fluent orderBy(...$field)
|
||||
* @method Fluent limit(int $limit)
|
||||
* @method Fluent offset(int $offset)
|
||||
* @method Fluent leftJoin($table)
|
||||
* @method Fluent on($cond)
|
||||
* @method Fluent join(...$table)
|
||||
* @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
|
||||
{
|
||||
|
Reference in New Issue
Block a user