You are here

ExchangerImporterInterface.php in Commerce Exchanger 8

File

src/ExchangerImporterInterface.php
View source
<?php

namespace Drupal\commerce_exchanger;


/**
 * Interface ExchangerImporterInterface.
 *
 * @package Drupal\commerce_exchanger
 */
interface ExchangerImporterInterface {

  /**
   * Triggers importing exchange rates.
   *
   * @param bool $force
   *   If import is forced regardless of cron setup.
   */
  public function run($force);

}

Interfaces

Namesort descending Description
ExchangerImporterInterface Interface ExchangerImporterInterface.