Example #1
0
 /**
  * @return Query
  */
 public function getQuery()
 {
     $query = new Query($this->getPhql(), $this->getDI());
     if (!empty($this->_bindParams)) {
         $query->setBindParams($this->_bindParams);
     }
     if (!empty($this->_bindTypes)) {
         $query->setBindTypes($this->_bindTypes);
     }
     return $query;
 }