FastFeed\FastFeed::getFeed PHP Method

getFeed() public method

Retrieve a channel
public getFeed ( string $channel ) : string
$channel string
return string
    public function getFeed($channel)
    {
        if (!isset($this->feeds[$channel])) {
            throw new LogicException('You tried to get a not existent channel');
        }
        return $this->feeds[$channel];
    }