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

Commit f70a62d

Browse files
authored
Update Select.php
1 parent 7d8d391 commit f70a62d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/QueryBuilder/Instruction/Select.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
*
1111
* @package Deimos\QueryBuilder\Instruction
1212
*
13-
* @method $this where($field, $operatorOrValue, $value = null)
14-
* @method $this whereOr($field, $operatorOrValue, $value = null)
15-
* @method $this whereXor($field, $operatorOrValue, $value = null)
13+
* @method $this where($fieldOrStorage, $operatorOrValue = null, $value = null)
14+
* @method $this whereOr($fieldOrStorage, $operatorOrValue = null, $value = null)
15+
* @method $this whereXor($fieldOrStorage, $operatorOrValue = null, $value = null)
1616
*
17-
* @method $this having($field, $operatorOrValue, $value = null)
18-
* @method $this havingOr($field, $operatorOrValue, $value = null)
19-
* @method $this havingXor($field, $operatorOrValue, $value = null)
17+
* @method $this having($fieldOrStorage, $operatorOrValue = null, $value = null)
18+
* @method $this havingOr($fieldOrStorage, $operatorOrValue = null, $value = null)
19+
* @method $this havingXor($fieldOrStorage, $operatorOrValue = null, $value = null)
2020
*/
2121
class Select extends Instruction
2222
{
@@ -64,4 +64,4 @@ protected function operators()
6464
];
6565
}
6666

67-
}
67+
}

0 commit comments

Comments
 (0)