Exemplo n.º 1
0
 /**
  * Returns an array of all the parameter that have been passed to where()
  * ready to be thrown at PDO.
  *
  * @return  array
  */
 public function getWhereParams()
 {
     return isset($this->whereBuilder) ? $this->whereBuilder->getConditionParameters() : [];
 }
Exemplo n.º 2
0
 /**
  * Returns an array of all the parameter that have been passed to having()
  * ready to be thrown at PDO.
  *
  * @return  array
  */
 public function getHavingParams()
 {
     return isset($this->havingBuilder) ? $this->havingBuilder->getConditionParameters() : [];
 }