public function Feed::setTitle in Drupal 8
Same name and namespace in other branches
- 9 core/modules/aggregator/src/Entity/Feed.php \Drupal\aggregator\Entity\Feed::setTitle()
Sets the title of the feed.
Parameters
string $title: The short title of the feed.
Return value
$this The class instance that this method is called on.
Overrides FeedInterface::setTitle
File
- core/
modules/ aggregator/ src/ Entity/ Feed.php, line 313
Class
- Feed
- Defines the aggregator feed entity class.
Namespace
Drupal\aggregator\EntityCode
public function setTitle($title) {
$this
->set('title', $title);
return $this;
}