Remove erroneous typing
This commit is contained in:
parent
af19936f01
commit
682a706130
@ -335,7 +335,7 @@ abstract class AbstractQueryBuilder {
|
|||||||
* @param mixed $val
|
* @param mixed $val
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
protected function _where($key, array $val=[]): array
|
protected function _where($key, $val=[]): array
|
||||||
{
|
{
|
||||||
$where = [];
|
$where = [];
|
||||||
$this->_mixedSet($where, $key, $val);
|
$this->_mixedSet($where, $key, $val);
|
||||||
@ -351,7 +351,7 @@ abstract class AbstractQueryBuilder {
|
|||||||
* @param string $defaultConj
|
* @param string $defaultConj
|
||||||
* @return self
|
* @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
|
// Create key/value placeholders
|
||||||
foreach($this->_where($key, $values) as $f => $val)
|
foreach($this->_where($key, $values) as $f => $val)
|
||||||
|
Loading…
Reference in New Issue
Block a user