Skip to content

[FrameworkBundle] Make SerializerCacheWarmer class final #60967

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions UPGRADE-8.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ FrameworkBundle
```

* Make `Router` class `final`
* Make `SerializerCacheWarmer` class `final`

HttpFoundation
--------------
Expand Down
1 change: 1 addition & 0 deletions src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ CHANGELOG
* Enable the property info constructor extractor by default
* Remove deprecated `Symfony\Bundle\FrameworkBundle\Console\Application::add()` method in favor of `Symfony\Bundle\FrameworkBundle\Console\Application::addCommand()`
* Make `Router` class `final`
* Make `SerializerCacheWarmer` class `final`

7.4
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@
* Warms up XML and YAML serializer metadata.
*
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @final since Symfony 7.1
*/
class SerializerCacheWarmer extends AbstractPhpFileCacheWarmer
final class SerializerCacheWarmer extends AbstractPhpFileCacheWarmer
{
/**
* @param LoaderInterface[] $loaders The serializer metadata loaders
Expand Down
Loading