You are here

public function Order::getStateId in Ubercart 8.4

Returns the order state ID.

Return value

string The order state ID.

Overrides OrderInterface::getStateId

File

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

Class

Order
Defines the order entity class.

Namespace

Drupal\uc_order\Entity

Code

public function getStateId() {
  return $this
    ->getStatus()
    ->getState();
}