You are here

public function Order::getCurrency in Ubercart 8.4

Returns the order currency code.

Return value

string The order currency code.

Overrides OrderInterface::getCurrency

File

uc_order/src/Entity/Order.php, line 405

Class

Order
Defines the order entity class.

Namespace

Drupal\uc_order\Entity

Code

public function getCurrency() {
  return $this
    ->get('currency')->value;
}