You are here

public function BundleItemOrderItem::getCreatedTime in Commerce Product Bundle 8

Gets the order item creation timestamp.

Return value

int The bundle item order item creation timestamp.

Overrides BundleItemOrderItemInterface::getCreatedTime

File

src/Entity/BundleItemOrderItem.php, line 52

Class

BundleItemOrderItem
Defines the Bundle Item Order Item entity.

Namespace

Drupal\commerce_product_bundle\Entity

Code

public function getCreatedTime() {
  return $this
    ->get('created')->value;
}