Example #1
0
 /**
  * Sets the table for the query.
  *
  * @param string $table table name
  *
  * @return self
  */
 public function into($table)
 {
     $this->table->addTable($table);
     return $this;
 }
Example #2
0
 /**
  * Sets the table for the query.
  *
  * @param string $table table name
  *
  * @return self
  */
 public function from($table)
 {
     $this->from->addTable($table);
     return $this;
 }