You are here

public function Deleted::setType in Zircon Profile 8

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

Set the current feed type being exported to "rss" or "atom". This allows other objects to gracefully choose whether to execute or not, depending on their appropriateness for the current type, e.g. renderers.

Parameters

string $type:

Return value

Deleted

File

vendor/zendframework/zend-feed/src/Writer/Deleted.php, line 88

Class

Deleted

Namespace

Zend\Feed\Writer

Code

public function setType($type) {
  $this->type = $type;
  return $this;
}