You are here

protected property Tasks::$tasks in MongoDB 8

Structure that describes each task to run.

Each value of the tasks array is an associative array defining the function to call (optional) and any arguments to be passed to the function.

Type: array

Overrides Tasks::$tasks

File

drivers/lib/Drupal/Driver/Database/mongodb/Install/Tasks.php, line 20

Class

Tasks

Namespace

Drupal\Driver\Database\mongodb\Install

Code

protected $tasks = array(
  array(
    'function' => 'checkEngineVersion',
    'arguments' => array(),
  ),
  array(
    'function' => 'installSettings',
    'arguments' => array(),
  ),
);