You are here

Tasks.php in Drupal 8

File

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

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

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

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

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

}

Classes

Namesort descending Description
Tasks Specifies installation tasks for MySQL test databases.