zendframework / zend-stratigility

Middleware for PHP built on top of PSR-7 and PSR-15
BSD 3-Clause "New" or "Revised" License
235 stars 57 forks source link

Remove "final" declaration from ErrorHandler #185

Closed weierophinney closed 5 years ago

weierophinney commented 5 years ago

Per #176, because the ErrorHandler adds a public method that is not in any interface, it cannot be easily mocked for testing purposes. This patch removes that declaration.

Fixes #176