You are here

Connection.php in Drupal 8

File

core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Connection.php
View source
<?php

namespace Drupal\driver_test\Driver\Database\DrivertestMysql;

use Drupal\Core\Database\Driver\mysql\Connection as CoreConnection;

/**
 * MySQL test implementation of \Drupal\Core\Database\Connection.
 */
class Connection extends CoreConnection {

  /**
   * {@inheritdoc}
   */
  public function driver() {
    return 'DrivertestMysql';
  }

}

Classes

Namesort descending Description
Connection MySQL test implementation of \Drupal\Core\Database\Connection.