Update.php in Drupal 10
Same filename in this branch
- 10 update.php
- 10 core/assets/scaffold/files/update.php
- 10 core/lib/Drupal/Core/Database/Query/Update.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Update.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Update.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Update.php
- 10 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Update.php
- 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/fixtures/drupal-assets-fixture/assets/update.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Update.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Update.php
- 10 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Update.php
Namespace
Drupal\mysql\Driver\Database\mysqlFile
core/modules/mysql/src/Driver/Database/mysql/Update.phpView source
<?php
namespace Drupal\mysql\Driver\Database\mysql;
use Drupal\Core\Database\Query\Update as QueryUpdate;
/**
* MySQL implementation of \Drupal\Core\Database\Query\Update.
*/
class Update extends QueryUpdate {
/**
* {@inheritdoc}
*/
public function __construct(Connection $connection, string $table, array $options = []) {
// @todo Remove the __construct in Drupal 11.
// @see https://www.drupal.org/project/drupal/issues/3256524
parent::__construct($connection, $table, $options);
unset($this->queryOptions['return']);
}
}
Classes
Name | Description |
---|---|
Update | MySQL implementation of \Drupal\Core\Database\Query\Update. |