Update.php

Namespace

Drupal\mysql\Driver\Database\mysql

File

core/modules/mysql/src/Driver/Database/mysql/Update.php

View 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

Title Deprecated Summary
Update MySQL implementation of \Drupal\Core\Database\Query\Update.

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