You are here

DoNothing.php in MongoDB 8

File

drivers/lib/Drupal/Driver/Database/mongodb/DoNothing.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Driver\Database\mongodb\DoNothing.
 */
namespace Drupal\Driver\Database\mongodb;

class DoNothing {
  function __call($name, $args) {

    // Nothing to do.
  }

}

Classes

Namesort descending Description
DoNothing