Ejemplo n.º 1
0
 /**
  * @return string
  * @throws Exception
  */
 public function build()
 {
     return $this->expression->build($this->driver);
 }
Ejemplo n.º 2
0
 protected function buildOrder(Quoter $quoter)
 {
     $order = '';
     if ($this->order && !$this->order->isEmpty()) {
         $order = ' ORDER BY ' . $this->order->build($quoter);
     }
     return $order;
 }