Monolog\Handler\AbstractHandler::popProcessor PHP Метод

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

public popProcessor ( )
    public function popProcessor()
    {
        if (!$this->processors) {
            throw new \LogicException('You tried to pop from an empty processor stack.');
        }
        return array_shift($this->processors);
    }