You are here

entity_update_tests.module in Entity Update 8

This file contains mock function to avoid functionnot found errors.

File

modules/entity_update_tests/entity_update_tests.module
View source
<?php

/**
 * @file
 * This file contains mock function to avoid functionnot found errors.
 */

/**
 * Simulate drush_log.
 */
if (!function_exists('drush_log')) {

  /**
   * Mock function drush_log.
   */
  function drush_log($a0 = 0, $a1 = 1, $a2 = 2) {
  }
}

/**
 * This file contains mock function to avoid errors.
 */
if (!function_exists('drush_print')) {

  /**
   * Mock function drush_print.
   */
  function drush_print($a0 = 0, $a1 = 1, $a2 = 2) {
  }
}