Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

zend-stratigility 3.1.0

Compare
Choose a tag to compare
@weierophinney weierophinney released this 06 Feb 18:17
· 24 commits to master since this release

Added

  • #178 adds the class Zend\Stratigility\EmptyPipelineHandler, which raises an
    EmptyPipelineException when it handles an incoming request. It's primary
    purpose is for use in the MiddlewarePipe as a fallback handler during
    handle() operations.

Changed

  • #178 provides some performance improvements to MiddlewarePipe::handle() by
    having it create an instance of EmptyPipelineHandler to use as a fallback
    handler when it calls process() on itself. This prevents cloning of the
    pipeline in this scenario, which is used when it acts as an application
    entrypoint.

  • #185 removes the "final" declaration from the ErrorHandler class, to allow
    more easily mocking it for testing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.