We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 935c60a + 8ecc2c0 commit e7a4cfeCopy full SHA for e7a4cfe
src/Builder/Traits/WhereBuilder.php
@@ -11,9 +11,10 @@ trait WhereBuilder {
11
12
/**
13
* @param string $expression
14
+ * @param mixed ...$param
15
* @return $this
16
*/
- public function where($expression) {
17
+ public function where($expression, $param = null) {
18
$this->where[] = array($expression, array_slice(func_get_args(), 1));
19
return $this;
20
}
0 commit comments