function StubConnection::upsert

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Database/Stub/StubConnection.php \Drupal\Tests\Core\Database\Stub\StubConnection::upsert()

Prepares and returns an UPSERT query object.

@todo in drupal:11.0.0, make this method abstract since Query\Upsert is an abstract class.

Parameters

string $table: The table to use for the upsert query.

array $options: (optional) An array of options on the query.

Return value

\Drupal\Core\Database\Query\Upsert A new Upsert query object.

Overrides Connection::upsert

File

core/tests/Drupal/Tests/Core/Database/Stub/StubConnection.php, line 144

Class

StubConnection
A stub of the abstract Connection class for testing purposes.

Namespace

Drupal\Tests\Core\Database\Stub

Code

public function upsert($table, array $options = []) {
  return new StubUpsert($this, $table, $options);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.