FastFeed\Item::getSource PHP 메소드

getSource() 공개 메소드

public getSource ( ) : string
리턴 string
    public function getSource()
    {
        return $this->source;
    }

Usage 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::getSource