Example #1
0
 /**
  * Creates a new Zend\Feed\Writer\Source data container for use. This is NOT
  * added to the current feed automatically, but is necessary to create a
  * container with some initial values preset based on the current feed data.
  *
  * @return Source
  */
 public function createSource()
 {
     $source = new Source();
     if ($this->getEncoding()) {
         $source->setEncoding($this->getEncoding());
     }
     $source->setType($this->getType());
     return $source;
 }