Пример #1
0
 /**
  * Specify the tabe to insert in to
  *
  * @param string $table
  * @param array $params
  * @return $this
  * @throws \RuntimeException
  */
 public function tableRaw($table, array $params = array())
 {
     if (count($this->tables) != 0) {
         throw new \RuntimeException("You may not set multiple tables");
     }
     return parent::tableRaw($table, $params);
 }