You are here

public function OrderStatus::getName in Ubercart 8.4

Returns the name of this status.

Return value

string The name of this status.

Overrides OrderStatusInterface::getName

File

uc_order/src/Entity/OrderStatus.php, line 73

Class

OrderStatus
Defines the order status entity.

Namespace

Drupal\uc_order\Entity

Code

public function getName() {
  return $this
    ->label();
}