Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 871 Bytes

File metadata and controls

12 lines (8 loc) · 871 Bytes

5.x to 6.x

Chubbyphp\Framework\Middleware\MiddlewareDispatcher gets dropped and replaced by Chubbyphp\Framework\Middleware\PipeMiddleware. Chubbyphp\Framework\Middleware\MiddlewareDispatcher as an implements of Chubbyphp\Framework\Middleware\MiddlewareDispatcherInterface which is gone as well.

This makes the framework as bit less flexible for special use cases, but easier in use for the majority.

Resulting changes:

  • Chubbyphp\Framework\Handler\RouteRequestHandler::__construct does not take a Chubbyphp\Framework\Middleware\MiddlewareDispatcherInterface as argument anymore.
  • Chubbyphp\Framework\Application::__construct does not take a Chubbyphp\Framework\Middleware\MiddlewareDispatcherInterface as argument anymore.

Chubbyphp\Framework\Collection is gone, use phpstan if you want to make sure you providing the correct types on array of.