FastFeed\FastFeed::popParser PHP Метод

popParser() публичный Метод

public popParser ( ) : FastFeed\Parser\ParserInterface
Результат FastFeed\Parser\ParserInterface
    public function popParser()
    {
        if (!$this->parsers) {
            throw new LogicException('You tried to pop from an empty parsers stack.');
        }
        return array_shift($this->parsers);
    }