You are here

public function Item::getDescription in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/aggregator/src/Entity/Item.php \Drupal\aggregator\Entity\Item::getDescription()

Returns the body of the feed item.

Return value

string The body of the feed item.

Overrides ItemInterface::getDescription

File

core/modules/aggregator/src/Entity/Item.php, line 181

Class

Item
Defines the aggregator item entity class.

Namespace

Drupal\aggregator\Entity

Code

public function getDescription() {
  return $this
    ->get('description')->value;
}