You are here

public function Order::getStatus in Ubercart 8.4

Returns the order status.

Return value

\Drupal\uc_order\OrderStatusInterface The order status entity.

Overrides OrderInterface::getStatus

File

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

Class

Order
Defines the order entity class.

Namespace

Drupal\uc_order\Entity

Code

public function getStatus() {
  return $this
    ->get('order_status')->entity;
}