You are here

public function OrderDeletedEvent::__construct in Ubercart 8.4

Constructs the object.

Parameters

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

File

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

Class

OrderDeletedEvent
Event that is fired when an order is being deleted.

Namespace

Drupal\uc_order\Event

Code

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