Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 727 Bytes

UPGRADE-4.4.md

File metadata and controls

37 lines (27 loc) · 727 Bytes

UPGRADE FROM 4.3 to 4.4

HttpKernel

  • The DebugHandlersListener class has been marked as final

DependencyInjection

  • Deprecated support for short factories and short configurators in Yaml

    Before:

    services:
      my_service:
        factory: factory_service:method

    After:

    services:
      my_service:
        factory: ['@factory_service', method]

MonologBridge

  • The RouteProcessor has been marked final.

TwigBridge

  • Deprecated to pass $rootDir and $fileLinkFormatter as 5th and 6th argument respectively to the DebugCommand::__construct() method, swap the variables position.