You are here

Connection.php in Drupal 9

File

core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefake/Connection.php
View source
<?php

namespace Drupal\corefake\Driver\Database\corefake;

use Drupal\Driver\Database\fake\Connection as BaseConnection;

/**
 * Corefake implementation of \Drupal\Core\Database\Connection.
 */
class Connection extends BaseConnection {

  /**
   * {@inheritdoc}
   */
  public $driver = 'corefake';

}

Classes

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