FastFeed\Item::getContent PHP Method

getContent() public method

public getContent ( ) : string
return string
    public function getContent()
    {
        return $this->content;
    }

Usage Example

Example #1
0
 /**
  * @param Item $item
  *
  * @return Item
  */
 protected function fixPaths(Item $item)
 {
     $url = new Url($item->getSource());
     $item->setIntro($this->getFixedText($item->getIntro(), $url->getFullHost()));
     $item->setContent($this->getFixedText($item->getContent(), $url->getFullHost()));
     return $item;
 }
All Usage Examples Of FastFeed\Item::getContent