function Tasks::__construct

Constructs a \Drupal\pgsql\Driver\Database\pgsql\Install\Tasks object.

File

core/modules/pgsql/src/Driver/Database/pgsql/Install/Tasks.php, line 31

Class

Tasks
Specifies installation tasks for PostgreSQL databases.

Namespace

Drupal\pgsql\Driver\Database\pgsql\Install

Code

public function __construct() {
  $this->tasks[] = [
    'function' => 'checkEncoding',
    'arguments' => [],
  ];
  $this->tasks[] = [
    'function' => 'checkBinaryOutput',
    'arguments' => [],
  ];
  $this->tasks[] = [
    'function' => 'checkStandardConformingStrings',
    'arguments' => [],
  ];
  $this->tasks[] = [
    'function' => 'initializeDatabase',
    'arguments' => [],
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.