PicoFeed\Parser\Parser::checkItemUrl PHP Method

checkItemUrl() public method

Check if the item url is correct.
public checkItemUrl ( PicoFeed\Parser\Feed $feed, PicoFeed\Parser\Item $item )
$feed PicoFeed\Parser\Feed Feed object
$item PicoFeed\Parser\Item Item object
    public function checkItemUrl(Feed $feed, Item $item)
    {
        $item->url = Url::resolve($item->getUrl(), $feed->getSiteUrl());
    }