You are here

Tasks.php in Drupal 8

File

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

namespace Drupal\driver_test\Driver\Database\DrivertestPgsql\Install;

use Drupal\Core\Database\Driver\pgsql\Install\Tasks as CoreTasks;

/**
 * Specifies installation tasks for PostgreSQL databases.
 */
class Tasks extends CoreTasks {

  /**
   * {@inheritdoc}
   */
  public function name() {
    return t('PostgreSQL by the driver_test module');
  }

}

Classes

Namesort descending Description
Tasks Specifies installation tasks for PostgreSQL databases.