FastFeed\FastFeed::popProcessor PHP Méthode

popProcessor() public méthode

public popProcessor ( ) : FastFeed\Processor\ProcessorInterface
Résultat FastFeed\Processor\ProcessorInterface
    public function popProcessor()
    {
        if (!$this->processors) {
            throw new LogicException('You tried to pop from an empty Processor stack.');
        }
        return array_shift($this->processors);
    }