public Feed::setTitle($title)
Sets the title of the feed.
Parameters
string $title: The short title of the feed.
Return value
\Drupal\aggregator\FeedInterface The class instance that this method is called on.
Overrides FeedInterface::setTitle
File
- core/modules/aggregator/src/Entity/Feed.php, line 304
Class
- Feed
- Defines the aggregator feed entity class.
Namespace
Drupal\aggregator\Entity
Code
public function setTitle($title) { $this->set('title', $title); return $this; }
Please login to continue.