Skip to content
This repository was archived by the owner on Aug 13, 2023. It is now read-only.

Commit 66e888e

Browse files
committed
update docs
1 parent fdc8046 commit 66e888e

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

src/QueryBuilder/Instruction/Delete.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
use Deimos\QueryBuilder\Instruction;
66
use Deimos\QueryBuilder\Operator;
77

8+
/**
9+
* Class Delete
10+
*
11+
* @package Deimos\QueryBuilder\Instruction
12+
*
13+
* @method $this where($field, $operatorOrValue, $value = null)
14+
* @method $this whereOr($field, $operatorOrValue, $value = null)
15+
* @method $this whereXor($field, $operatorOrValue, $value = null)
16+
*/
817
class Delete extends Instruction
918
{
1019

src/QueryBuilder/Instruction/Select.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@
55
use Deimos\QueryBuilder\Instruction;
66
use Deimos\QueryBuilder\Operator;
77

8+
/**
9+
* Class Select
10+
*
11+
* @package Deimos\QueryBuilder\Instruction
12+
*
13+
* @method $this where($field, $operatorOrValue, $value = null)
14+
* @method $this whereOr($field, $operatorOrValue, $value = null)
15+
* @method $this whereXor($field, $operatorOrValue, $value = null)
16+
*
17+
* @method $this having($field, $operatorOrValue, $value = null)
18+
* @method $this havingOr($field, $operatorOrValue, $value = null)
19+
* @method $this havingXor($field, $operatorOrValue, $value = null)
20+
*/
821
class Select extends Instruction
922
{
1023

src/QueryBuilder/Instruction/Update.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
use Deimos\QueryBuilder\Instruction;
66
use Deimos\QueryBuilder\Operator;
77

8+
/**
9+
* Class Update
10+
*
11+
* @package Deimos\QueryBuilder\Instruction
12+
*
13+
* @method $this where($field, $operatorOrValue, $value = null)
14+
* @method $this whereOr($field, $operatorOrValue, $value = null)
15+
* @method $this whereXor($field, $operatorOrValue, $value = null)
16+
*/
817
class Update extends Instruction
918
{
1019

0 commit comments

Comments
 (0)