You are here

CurrentCurrencyTest.php in Commerce Currency Resolver 8

File

tests/modules/commerce_currency_resolver_test/src/CurrentCurrencyTest.php
View source
<?php

namespace Drupal\commerce_currency_resolver_test;

use Drupal\commerce_currency_resolver\CurrentCurrency;

/**
 * Holds a reference to the currency, resolved on demand.
 */
class CurrentCurrencyTest extends CurrentCurrency {

  /**
   * {@inheritdoc}
   */
  public function getCurrency() {
    return 'VUV';
  }

}

Classes

Namesort descending Description
CurrentCurrencyTest Holds a reference to the currency, resolved on demand.