public function Connection::setKey in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Connection.php \Drupal\Core\Database\Connection::setKey()
Tells this connection object what its key is.
Parameters
string $key: The key this connection is for.
File
- core/
lib/ Drupal/ Core/ Database/ Connection.php, line 725
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public function setKey($key) {
if (!isset($this->key)) {
$this->key = $key;
}
}