Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 288 Bytes

UPGRADE-2.3.md

File metadata and controls

19 lines (13 loc) · 288 Bytes

UPGRADE FROM 2.2 to 2.3

HttpKernel

  • The init() method has to be called after Kernel instanciation.

    Before:

    $kernel = new AppKernel('dev', true);

    After:

    $kernel = new AppKernel('dev', true);
    $kernel->init();