You are here

public function Subscription::getTitle in Commerce Recurring Framework 8

Gets the subscription title.

Return value

string The subscription title

Overrides SubscriptionInterface::getTitle

1 call to Subscription::getTitle()
Subscription::label in src/Entity/Subscription.php
Gets the label of the entity.

File

src/Entity/Subscription.php, line 229

Class

Subscription
Defines the subscription entity.

Namespace

Drupal\commerce_recurring\Entity

Code

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