You are here

Connection.php in Drupal 8

File

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

namespace Drupal\driver_test\Driver\Database\DrivertestPgsql;

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

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

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

}

Classes

Namesort descending Description
Connection PostgreSQL implementation of \Drupal\Core\Database\Connection.