/** * @param string $table * * @return boolean */ public function into(string $table) { parent::into($table); $compiler = $this->connection->getCompiler(); return $this->connection->command($compiler->insert($this->sql), $compiler->getParams()); }
public function into($table) { parent::into($table); return $this->connection->command((string) $this, $this->compiler->getParams()); }