You are here

public function OrderStatusEmailUpdateEvent::__construct in Ubercart 8.4

Constructs the object.

Parameters

\Drupal\uc_order\OrderInterface $order: The order object.

File

uc_order/src/Event/OrderStatusEmailUpdateEvent.php, line 28

Class

OrderStatusEmailUpdateEvent
Event indicating an email notification of order status change was requested.

Namespace

Drupal\uc_order\Event

Code

public function __construct(OrderInterface $order) {
  $this->order = $order;
}