Skip to content

Commit e7a4cfe

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 935c60a + 8ecc2c0 commit e7a4cfe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Builder/Traits/WhereBuilder.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ trait WhereBuilder {
1111

1212
/**
1313
* @param string $expression
14+
* @param mixed ...$param
1415
* @return $this
1516
*/
16-
public function where($expression) {
17+
public function where($expression, $param = null) {
1718
$this->where[] = array($expression, array_slice(func_get_args(), 1));
1819
return $this;
1920
}

0 commit comments

Comments
 (0)