Remove erroneous typing

This commit is contained in:
Timothy Warren 2018-01-22 12:48:14 -05:00
parent af19936f01
commit 682a706130
1 changed files with 2 additions and 2 deletions

View File

@ -335,7 +335,7 @@ abstract class AbstractQueryBuilder {
* @param mixed $val
* @return array
*/
protected function _where($key, array $val=[]): array
protected function _where($key, $val=[]): array
{
$where = [];
$this->_mixedSet($where, $key, $val);
@ -351,7 +351,7 @@ abstract class AbstractQueryBuilder {
* @param string $defaultConj
* @return self
*/
protected function _whereString($key, array $values=[], string $defaultConj='AND'): self
protected function _whereString($key, $values=[], string $defaultConj='AND'): self
{
// Create key/value placeholders
foreach($this->_where($key, $values) as $f => $val)