Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 445 Bytes

UPGRADE-1.x.md

File metadata and controls

23 lines (20 loc) · 445 Bytes

UPGRADE 1.x

Moved SonataTwigBundle

Sonata\Twig\Bridge\Symfony\Bundle\SonataTwigBundle has been deprecated. Use Sonata\Twig\Bridge\Symfony\SonataTwigBundle instead.

Before:

return [
    //...
    Sonata\Twig\Bridge\Symfony\Bundle\SonataTwigBundle::class => ['all' => true],
    //...
];

After:

return [
    //...
    Sonata\Twig\Bridge\Symfony\SonataTwigBundle::class => ['all' => true],
    //...
];