You are here

public function CheckoutReviewOrderEvent::__construct in Ubercart 8.4

Constructs the object.

Parameters

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

File

uc_cart/src/Event/CheckoutReviewOrderEvent.php, line 28

Class

CheckoutReviewOrderEvent
Event that is fired when a customer reviews their order in checkout.

Namespace

Drupal\uc_cart\Event

Code

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