You are here

public function Entry::setTitle in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-feed/src/Writer/Entry.php \Zend\Feed\Writer\Entry::setTitle()

Set the feed title

Parameters

string $title:

Return value

Entry

Throws

Exception\InvalidArgumentException

File

vendor/zendframework/zend-feed/src/Writer/Entry.php, line 350

Class

Entry

Namespace

Zend\Feed\Writer

Code

public function setTitle($title) {
  if (empty($title) || !is_string($title)) {
    throw new Exception\InvalidArgumentException('Invalid parameter: parameter must be a non-empty string');
  }
  $this->data['title'] = $title;
  return $this;
}