You are here

public function Shipment::getTitle in Commerce Shipping 8.2

Gets the shipment title.

Return value

string The shipment title.

Overrides ShipmentInterface::getTitle

File

src/Entity/Shipment.php, line 221

Class

Shipment
Defines the shipment entity class.

Namespace

Drupal\commerce_shipping\Entity

Code

public function getTitle() {
  return $this
    ->get('title')->value;
}