You are here

public function BundleItemOrderItem::getTitle in Commerce Product Bundle 8

Gets the bundle item order item title.

Return value

string The order item title

Overrides BundleItemOrderItemInterface::getTitle

File

src/Entity/BundleItemOrderItem.php, line 88

Class

BundleItemOrderItem
Defines the Bundle Item Order Item entity.

Namespace

Drupal\commerce_product_bundle\Entity

Code

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