Releases: FriendsOfSymfony/FOSRestBundle
3.0.1
2.8.1
3.0.0
Features
- added support for Symfony 5 compatibility
BC Breaks
-
the route generation feature was removed, setting it to another value than
falseleads to an
exception -
support for serializing exceptions was removed, setting the
fos_rest.exception.serialize_exceptions
option to anything else thanfalseleads to an exception -
support for returning anything other than
stringornullfromresolve()when implementing
theVersionResolverInterfacewas removed -
removed support for passing version numbers as integers to
Context::setVersion() -
removed the
isFormatTemplating(),renderTemplate(), andprepareTemplateParameters()methods
from theViewHandlerclass and theViewHandlerInterface -
the constructor of the
ViewHandlerclass isprivatenow, use the staticcreate()factory
method instead -
removed the
setTemplateVar(),setPopulateDefaultVars(),getTemplateVar(), and
isPopulateDefaultVars()methods from theController\Annotations\Viewclass -
removed the
setEngine(),setTemplate(),setTemplateData(),setTemplateVar(),getEngine(),
getTemplate(),getTemplateData(), andgetTemplateVar()methods from theView\Viewclass -
changed the default value of the
fos_rest.body_listeneroption tofalse -
removed the
setMaxDepth()/getMaxDepth()methods from theContextclass, use
enableMaxDepth()/disableMaxDepth()instead -
dropped support for Symfony components < 4.4
-
removed the following options:
fos_rest.access_denied_listenerfos_rest.exception.exception_controllerfos_rest.exception.exception_listenerfos_rest.exception.servicefos_rest.service.inflectorfos_rest.service.routerfos_rest.service.templatingfos_rest.view.default_enginefos_rest.view.force_redirectsfos_rest.view.templating_formats
-
removed the following classes and interfaces:
FOS\RestBundle\Controller\Annotations\NamePrefixFOS\RestBundle\Controller\Annotations\NoRouteFOS\RestBundle\Controller\Annotations\PrefixFOS\RestBundle\Controller\Annotations\RouteResourceFOS\RestBundle\Controller\Annotations\VersionFOS\RestBundle\Controller\ExceptionControllerFOS\RestBundle\Controller\TemplatingExceptionControllerFOS\RestBundle\Controller\TwigExceptionControllerFOS\RestBundle\EventListener\AccessDeniedListenerFOS\RestBundle\EventListener\ExceptionListenerFOS\RestBundle\Inflector\DoctrineInflectorFOS\RestBundle\Inflector\InflectorInterfaceFOS\RestBundle\Routing\Loader\DirectoryRouteLoaderFOS\RestBundle\Routing\Loader\Reader\RestActionReaderFOS\RestBundle\Routing\Loader\Reader\RestControllerReaderFOS\RestBundle\Routing\Loader\RestRouteLoaderFOS\RestBundle\Routing\Loader\RestRouteProcessorFOS\RestBundle\Routing\Loader\RestXmlCollectionLoaderFOS\RestBundle\Routing\Loader\RestYamlCollectionLoaderFOS\RestBundle\Routing\ClassResourceInterfaceFOS\RestBundle\Routing\RestRouteCollectionFOS\RestBundle\Serializer\Normalizer\ExceptionHandlerFOS\RestBundle\Serializer\Normalizer\ExceptionNormalizer
-
removed the following services and aliases:
fos_rest.access_denied_listenerfos_rest.exception_listenerfos_rest.exception.controllerfos_rest.exception.twig_controllerfos_rest.inflectorfos_rest.routerfos_rest.routing.loader.controllerfos_rest.routing.loader.directoryfos_rest.routing.loader.processorfos_rest.routing.loader.reader.controllerfos_rest.routing.loader.reader.actionfos_rest.routing.loader.xml_collectionfos_rest.routing.loader.yaml_collectionfos_rest.serializer.exception_normalizer.jmsfos_rest.serializer.exception_normalizer.symfonyfos_rest.templating
-
the following classes are marked as
internal(backwards compatibility will no longer be guaranteed):FOS\RestBundle\DependencyInjection\Compiler\HandlerRegistryDecorationPassFOS\RestBundle\DependencyInjection\FOSRestExtensionFOS\RestBundle\Form\Extension\DisableCSRFExtensionFOS\RestBundle\Form\Transformer\EntityToIdObjectTransformerFOS\RestBundle\Normalizer\CamelKeysNormalizerFOS\RestBundle\Normalizer\CamelKeysNormalizerWithLeadingUnderscoreFOS\RestBundle\Serializer\Normalizer\FormErrorHandlerFOS\RestBundle\Serializer\Normalizer\FormErrorNormalizerFOS\RestBundle\Util\ExceptionValueMap
-
the following classes are now
final:FOS\RestBundle\Decoder\ContainerDecoderProviderFOS\RestBundle\Decoder\JsonDecoderFOS\RestBundle\Decoder\JsonToFormDecoderFOS\RestBundle\Decoder\XmlDecoderFOS\RestBundle\Form\Transformer\EntityToIdObjectTransformerFOS\RestBundle\Negotiation\FormatNegotiatorFOS\RestBundle\Request\ParamFetcherFOS\RestBundle\Request\ParamReaderFOS\RestBundle\Request\RequestBodyParamConverterFOS\RestBundle\Response\AllowMethodsLoader\AllowedMethodsRouterLoaderFOS\RestBundle\Serializer\JMSSerializerAdapterFOS\RestBundle\Serializer\SymfonySerializerAdapterFOS\RestBundle\Version\ChainVersionResolverFOS\RestBundle\Version\Resolver\HeaderVersionResolverFOS\RestBundle\Version\Resolver\MediaTypeVersionResolverFOS\RestBundle\Version\Resolver\QueryParameterVersionResolverFOS\RestBundle\View\JsonpHandlerFOS\RestBundle\View\ViewFOS\RestBundle\View\ViewHandler
2.8.0
Features
-
added a
SerializerErrorHandlerthat leverages theFOS\RestBundle\Serializer\Serializerinterface
to hook into the error rendering process provided by the ErrorHandler component since Symfony 4.4 -
added a new normalizer (for the Symfony serializer) and a new handler (for the JMS serializer) to
serializeFlattenExceptioninstances, for backwards compatibility the resulting format by default
is the same as was used for exceptions/errors before, use theflatten_exception_formatto opt-in
to a format compatible with the API Problem spec (RFC 7807):fos_rest: exception: flatten_exception_format: 'rfc7807'
-
added a new
ResponseStatusCodeListenerthat maps exception/error codes to response status codes,
enable it by setting the newmap_exception_codesoption totrue
Deprecations
-
the route generation feature is deprecated, disable it explicitly:
fos_rest: routing_loader: false
You need to configure your routes explicitly, e.g. using the Symfony Core annotations or the FOSRestBundle shortcuts like
FOS\RestBundle\Controller\Annotations\Get. You can usebin/console debug:router --show-controllersto help with the migration and compare routes before and after it.
Change the route loading:Before:
Acme\Controller\TestController: type: rest resource: Acme\Controller\TestControllerAfter:
Acme\Controller\TestController: type: annotation resource: Acme\Controller\TestControllerWhen using the Symfony Core route loading, route names might change as the FOSRestBundle used a different naming convention. Mind the
.{_format}suffix if you used thefos_rest.routing_loader.include_formatoption.In case you have OpenAPI/Swagger annotations, you can also use OpenAPI-Symfony-Routing which removes the need to have routing information duplicated. It also allows to add the
.{_format}suffix automatically as before.If migration to explicit routes is not possible or feasible, consider using RestRoutingBundle which extracted the auto-generation of routes in a BC way.
-
deprecated support for serializing exceptions, disable it by setting the
serialize_exceptions
option to false:fos_rest: exception: serialize_exceptions: false
-
deprecated returning anything other than
stringornullfromresolve()when implementing theVersionResolverInterface. -
deprecated support for passing version numbers as integers to
Context::setVersion()(strings
will be enforced as of 3.0) -
deprecated the
isFormatTemplating(),renderTemplate(), andprepareTemplateParameters()
methods of theViewHandlerclass and theViewHandlerInterface -
deprecated the constructor of the
ViewHandlerclass, use the staticcreate()factory method
instead -
deprecated the
setTemplateVar(),setPopulateDefaultVars(),getTemplateVar(), and
isPopulateDefaultVars()methods of theController\Annotations\Viewclass -
deprecated the
setEngine(),setTemplate(),setTemplateData(),setTemplateVar(),getEngine(),
getTemplate(),getTemplateData(), andgetTemplateVar()methods of theView\Viewclass -
deprecated not enabling the
fos_rest.body_listeneroption explicitly, it will be disabled by default
in 3.0 -
deprecated the following options:
fos_rest.access_denied_listenerfos_rest.exception.exception_controllerfos_rest.exception.exception_listenerfos_rest.exception.servicefos_rest.service.inflectorfos_rest.service.routerfos_rest.service.templatingfos_rest.view.default_enginefos_rest.view.force_redirectsfos_rest.view.templating_formats
-
the following classes and interfaces are marked as
deprecated, they will be removed in 3.0:FOS\RestBundle\Controller\Annotations\NamePrefixFOS\RestBundle\Controller\Annotations\NoRouteFOS\RestBundle\Controller\Annotations\PrefixFOS\RestBundle\Controller\Annotations\RouteResourceFOS\RestBundle\Controller\Annotations\VersionFOS\RestBundle\Controller\ExceptionControllerFOS\RestBundle\Controller\TemplatingExceptionControllerFOS\RestBundle\Controller\TwigExceptionControllerFOS\RestBundle\EventListener\AccessDeniedListenerFOS\RestBundle\EventListener\ExceptionListenerFOS\RestBundle\Inflector\DoctrineInflectorFOS\RestBundle\Inflector\InflectorInterfaceFOS\RestBundle\Routing\Loader\DirectoryRouteLoaderFOS\RestBundle\Routing\Loader\Reader\RestActionReaderFOS\RestBundle\Routing\Loader\Reader\RestControllerReaderFOS\RestBundle\Routing\Loader\RestRouteLoaderFOS\RestBundle\Routing\Loader\RestRouteProcessorFOS\RestBundle\Routing\Loader\RestXmlCollectionLoaderFOS\RestBundle\Routing\Loader\RestYamlCollectionLoaderFOS\RestBundle\Routing\ClassResourceInterfaceFOS\RestBundle\Routing\RestRouteCollectionFOS\RestBundle\Serializer\Normalizer\ExceptionHandlerFOS\RestBundle\Serializer\Normalizer\ExceptionNormalizer
-
the following services and aliases are marked as
deprecated, they will be removed in 3.0:fos_rest.access_denied_listenerfos_rest.exception_listenerfos_rest.exception.controllerfos_rest.exception.twig_controllerfos_rest.inflectorfos_rest.routerfos_rest.routing.loader.controllerfos_rest.routing.loader.directoryfos_rest.routing.loader.processorfos_rest.routing.loader.reader.controllerfos_rest.routing.loader.reader.actionfos_rest.routing.loader.xml_collectionfos_rest.routing.loader.yaml_collectionfos_rest.serializer.exception_normalizer.jmsfos_rest.serializer.exception_normalizer.symfonyfos_rest.templating
-
the following classes are marked as
internal(backwards compatibility will no longer be guaranteed
starting with FOSRestBundle 3.0):FOS\RestBundle\DependencyInjection\Compiler\HandlerRegistryDecorationPassFOS\RestBundle\DependencyInjection\FOSRestExtensionFOS\RestBundle\Form\Extension\DisableCSRFExtensionFOS\RestBundle\Form\Transformer\EntityToIdObjectTransformerFOS\RestBundle\Normalizer\CamelKeysNormalizerFOS\RestBundle\Normalizer\CamelKeysNormalizerWithLeadingUnderscoreFOS\RestBundle\Serializer\Normalizer\FormErrorHandlerFOS\RestBundle\Serializer\Normalizer\FormErrorNormalizerFOS\RestBundle\Util\ExceptionValueMap
-
the following classes are marked as
final(extending them will not be supported as of 3.0):FOS\RestBundle\Decoder\ContainerDecoderProviderFOS\RestBundle\Decoder\JsonDecoderFOS\RestBundle\Decoder\JsonToFormDecoderFOS\RestBundle\Decoder\XmlDecoderFOS\RestBundle\Form\Transformer\EntityToIdObjectTransformerFOS\RestBundle\Negotiation\FormatNegotiatorFOS\RestBundle\Request\ParamFetcherFOS\RestBundle\Request\ParamReaderFOS\RestBundle\Request\RequestBodyParamConverterFOS\RestBundle\Response\AllowMethodsLoader\AllowedMethodsRouterLoaderFOS\RestBundle\Serializer\JMSSerializerAdapterFOS\RestBundle\Serializer\SymfonySerializerAdapterFOS\RestBundle\Version\ChainVersionResolverFOS\RestBundle\Version\Resolver\HeaderVersionResolverFOS\RestBundle\Version\Resolver\MediaTypeVersionResolverFOS\RestBundle\Version\Resolver\QueryParameterVersionResolverFOS\RestBundle\View\JsonpHandlerFOS\RestBundle\View\ViewFOS\RestBundle\View\ViewHandler
3.0.0-beta3
Bugfixes
- fixed setting serializer options in the
ViewHandler
BC Breaks
- removed the
fos_rest.access_denied_listeneroption - removed the
FOS\RestBundle\EventListener\AccessDeniedListenerclass - removed the
fos_rest.access_denied_listenerservice
2.8.0-beta3
Bugfixes
- fixed setting serializer options in the
ViewHandler
Deprecations
- deprecated the
fos_rest.access_denied_listeneroption - deprecated the
FOS\RestBundle\EventListener\AccessDeniedListenerclass - deprecated the
fos_rest.access_denied_listenerservice
3.0.0-beta2
Improvements
FlattenExceptionHandlerandFlattenExceptionNormalizersend RFC 7807-compatibleContent-Typeheader for JSON (application/problem+json) and XML (application/problem+xml)
BC Breaks
-
changed the default value of the
fos_rest.body_listeneroption tofalse -
removed the following options:
fos_rest.service.inflectorfos_rest.service.routerfos_rest.service.templatingfos_rest.view.default_enginefos_rest.view.force_redirects
-
removed the following classes and interfaces:
FOS\RestBundle\Inflector\DoctrineInflectorFOS\RestBundle\Inflector\InflectorInterface
-
removed the following services and aliases:
fos_rest.inflectorfos_rest.router
2.8.0-beta2
Improvements
FlattenExceptionHandlerandFlattenExceptionNormalizersend RFC 7807-compatibleContent-Typeheader for JSON (application/problem+json) and XML (application/problem+xml)
Deprecations
-
deprecated not enabling the
fos_rest.body_listeneroption explicitly, it will be disabled by default
in 3.0 -
deprecated the following options:
fos_rest.service.inflectorfos_rest.service.routerfos_rest.service.templatingfos_rest.view.default_enginefos_rest.view.force_redirects
-
the following classes and interfaces are marked as
deprecated, they will be removed in 3.0:FOS\RestBundle\Inflector\DoctrineInflectorFOS\RestBundle\Inflector\InflectorInterface
-
the following services and aliases are marked as
deprecated, they will be removed in 3.0:fos_rest.inflectorfos_rest.router
3.0.0-beta1
Features
- added support for Symfony 5 compatibility
BC Breaks
-
the route generation feature was removed, setting it to another value than
falseleads to an
exception -
support for serializing exceptions was removed, setting the
fos_rest.exception.serialize_exceptions
option to anything else thanfalseleads to an exception -
support for returning anything other than
stringornullfromresolve()when implementing
theVersionResolverInterfacewas removed -
removed support for passing version numbers as integers to
Context::setVersion() -
removed the
isFormatTemplating(),renderTemplate(), andprepareTemplateParameters()methods
from theViewHandlerclass and theViewHandlerInterface -
the constructor of the
ViewHandlerclass isprivatenow, use the staticcreate()factory
method instead -
removed the
setTemplateVar(),setPopulateDefaultVars(),getTemplateVar(), and
isPopulateDefaultVars()methods from theController\Annotations\Viewclass -
removed the
setEngine(),setTemplate(),setTemplateData(),setTemplateVar(),getEngine(),
getTemplate(),getTemplateData(), andgetTemplateVar()methods from theView\Viewclass -
changed the default value of the
fos_rest.service.templatingandfos_rest.view.default_engine
options tonull -
changed the default value of the
fos_rest.view.force_redirectsoption to the empty array -
removed the
setMaxDepth()/getMaxDepth()methods from theContextclass, use
enableMaxDepth()/disableMaxDepth()instead -
dropped support for Symfony components < 4.4
-
removed the following options:
fos_rest.exception.exception_controllerfos_rest.exception.exception_listenerfos_rest.exception.servicefos_rest.view.templating_formats
-
removed the following classes:
FOS\RestBundle\Controller\Annotations\NamePrefixFOS\RestBundle\Controller\Annotations\NoRouteFOS\RestBundle\Controller\Annotations\PrefixFOS\RestBundle\Controller\Annotations\RouteResourceFOS\RestBundle\Controller\Annotations\VersionFOS\RestBundle\Controller\ExceptionControllerFOS\RestBundle\Controller\TemplatingExceptionControllerFOS\RestBundle\Controller\TwigExceptionControllerFOS\RestBundle\EventListener\ExceptionListenerFOS\RestBundle\Routing\Loader\DirectoryRouteLoaderFOS\RestBundle\Routing\Loader\Reader\RestActionReaderFOS\RestBundle\Routing\Loader\Reader\RestControllerReaderFOS\RestBundle\Routing\Loader\RestRouteLoaderFOS\RestBundle\Routing\Loader\RestRouteProcessorFOS\RestBundle\Routing\Loader\RestXmlCollectionLoaderFOS\RestBundle\Routing\Loader\RestYamlCollectionLoaderFOS\RestBundle\Routing\ClassResourceInterfaceFOS\RestBundle\Routing\RestRouteCollectionFOS\RestBundle\Serializer\Normalizer\ExceptionHandlerFOS\RestBundle\Serializer\Normalizer\ExceptionNormalizer
-
removed the following services and aliases:
fos_rest.exception_listenerfos_rest.exception.controllerfos_rest.exception.twig_controllerfos_rest.routing.loader.controllerfos_rest.routing.loader.directoryfos_rest.routing.loader.processorfos_rest.routing.loader.reader.controllerfos_rest.routing.loader.reader.actionfos_rest.routing.loader.xml_collectionfos_rest.routing.loader.yaml_collectionfos_rest.serializer.exception_normalizer.jmsfos_rest.serializer.exception_normalizer.symfonyfos_rest.templating
-
the following classes are marked as
internal(backwards compatibility will no longer be guaranteed):FOS\RestBundle\DependencyInjection\Compiler\HandlerRegistryDecorationPassFOS\RestBundle\DependencyInjection\FOSRestExtensionFOS\RestBundle\Form\Extension\DisableCSRFExtensionFOS\RestBundle\Form\Transformer\EntityToIdObjectTransformerFOS\RestBundle\Normalizer\CamelKeysNormalizerFOS\RestBundle\Normalizer\CamelKeysNormalizerWithLeadingUnderscoreFOS\RestBundle\Serializer\Normalizer\FormErrorHandlerFOS\RestBundle\Serializer\Normalizer\FormErrorNormalizerFOS\RestBundle\Util\ExceptionValueMap
-
the following classes are now
final:FOS\RestBundle\Decoder\ContainerDecoderProviderFOS\RestBundle\Decoder\JsonDecoderFOS\RestBundle\Decoder\JsonToFormDecoderFOS\RestBundle\Decoder\XmlDecoderFOS\RestBundle\Form\Transformer\EntityToIdObjectTransformerFOS\RestBundle\Inflector\DoctrineInflectorFOS\RestBundle\Negotiation\FormatNegotiatorFOS\RestBundle\Request\ParamFetcherFOS\RestBundle\Request\ParamReaderFOS\RestBundle\Request\RequestBodyParamConverterFOS\RestBundle\Response\AllowMethodsLoader\AllowedMethodsRouterLoaderFOS\RestBundle\Serializer\JMSSerializerAdapterFOS\RestBundle\Serializer\SymfonySerializerAdapterFOS\RestBundle\Version\ChainVersionResolverFOS\RestBundle\Version\Resolver\HeaderVersionResolverFOS\RestBundle\Version\Resolver\MediaTypeVersionResolverFOS\RestBundle\Version\Resolver\QueryParameterVersionResolverFOS\RestBundle\View\JsonpHandlerFOS\RestBundle\View\ViewFOS\RestBundle\View\ViewHandler
2.8.0-beta1
Features
-
added a
SerializerErrorHandlerthat leverages theFOS\RestBundle\Serializer\Serializerinterface
to hook into the error rendering process provided by the ErrorHandler component since Symfony 4.4 -
added a new normalizer (for the Symfony serializer) and a new handler (for the JMS serializer) to
serializeFlattenExceptioninstances, for backwards compatibility the resulting format by default
is the same as was used for exceptions/errors before, use theflatten_exception_formatto opt-in
to a format compatible with the API Problem spec (RFC 7807):fos_rest: exception: flatten_exception_format: 'rfc7807'
-
added a new
ResponseStatusCodeListenerthat maps exception/error codes to response status codes,
enable it by setting the newmap_exception_codesoption totrue
Deprecations
-
the route generation feature is deprecated, disable it explicitly:
fos_rest: routing_loader: false
You need to configure your routes explicitly or consider using the
RestRoutingBundle. -
deprecated support for serializing exceptions, disable it by setting the
serialize_exceptions
option to false:fos_rest: exception: serialize_exceptions: false
-
deprecated returning anything other than
stringornullfromresolve()when implementing theVersionResolverInterface. -
deprecated support for passing version numbers as integers to
Context::setVersion()(strings
will be enforced as of 3.0) -
deprecated the
isFormatTemplating(),renderTemplate(), andprepareTemplateParameters()
methods of theViewHandlerclass and theViewHandlerInterface -
deprecated the constructor of the
ViewHandlerclass, use the staticcreate()factory method
instead -
deprecated the
setTemplateVar(),setPopulateDefaultVars(),getTemplateVar(), and
isPopulateDefaultVars()methods of theController\Annotations\Viewclass -
deprecated the
setEngine(),setTemplate(),setTemplateData(),setTemplateVar(),getEngine(),
getTemplate(),getTemplateData(), andgetTemplateVar()methods of theView\Viewclass -
deprecated not setting the
fos_rest.service.templatingandfos_rest.view.default_engineoptions -
deprecated not setting the
fos_rest.view.force_redirectsoption to the empty array -
deprecated the following options:
fos_rest.exception.exception_controllerfos_rest.exception.exception_listenerfos_rest.exception.servicefos_rest.view.templating_formats
-
the following classes are marked as
deprecated, they will be removed in 3.0:FOS\RestBundle\Controller\Annotations\NamePrefixFOS\RestBundle\Controller\Annotations\NoRouteFOS\RestBundle\Controller\Annotations\PrefixFOS\RestBundle\Controller\Annotations\RouteResourceFOS\RestBundle\Controller\Annotations\VersionFOS\RestBundle\Controller\ExceptionControllerFOS\RestBundle\Controller\TemplatingExceptionControllerFOS\RestBundle\Controller\TwigExceptionControllerFOS\RestBundle\EventListener\ExceptionListenerFOS\RestBundle\Routing\Loader\DirectoryRouteLoaderFOS\RestBundle\Routing\Loader\Reader\RestActionReaderFOS\RestBundle\Routing\Loader\Reader\RestControllerReaderFOS\RestBundle\Routing\Loader\RestRouteLoaderFOS\RestBundle\Routing\Loader\RestRouteProcessorFOS\RestBundle\Routing\Loader\RestXmlCollectionLoaderFOS\RestBundle\Routing\Loader\RestYamlCollectionLoaderFOS\RestBundle\Routing\ClassResourceInterfaceFOS\RestBundle\Routing\RestRouteCollectionFOS\RestBundle\Serializer\Normalizer\ExceptionHandlerFOS\RestBundle\Serializer\Normalizer\ExceptionNormalizer
-
the following services and aliases are marked as
deprecated, they will be removed in 3.0:fos_rest.exception_listenerfos_rest.exception.controllerfos_rest.exception.twig_controllerfos_rest.routing.loader.controllerfos_rest.routing.loader.directoryfos_rest.routing.loader.processorfos_rest.routing.loader.reader.controllerfos_rest.routing.loader.reader.actionfos_rest.routing.loader.xml_collectionfos_rest.routing.loader.yaml_collectionfos_rest.serializer.exception_normalizer.jmsfos_rest.serializer.exception_normalizer.symfonyfos_rest.templating
-
the following classes are marked as
internal(backwards compatibility will no longer be guaranteed
starting with FOSRestBundle 3.0):FOS\RestBundle\DependencyInjection\Compiler\HandlerRegistryDecorationPassFOS\RestBundle\DependencyInjection\FOSRestExtensionFOS\RestBundle\Form\Extension\DisableCSRFExtensionFOS\RestBundle\Form\Transformer\EntityToIdObjectTransformerFOS\RestBundle\Normalizer\CamelKeysNormalizerFOS\RestBundle\Normalizer\CamelKeysNormalizerWithLeadingUnderscoreFOS\RestBundle\Serializer\Normalizer\FormErrorHandlerFOS\RestBundle\Serializer\Normalizer\FormErrorNormalizerFOS\RestBundle\Util\ExceptionValueMap
-
the following classes are marked as
final(extending them will not be supported as of 3.0):FOS\RestBundle\Decoder\ContainerDecoderProviderFOS\RestBundle\Decoder\JsonDecoderFOS\RestBundle\Decoder\JsonToFormDecoderFOS\RestBundle\Decoder\XmlDecoderFOS\RestBundle\Form\Transformer\EntityToIdObjectTransformerFOS\RestBundle\Inflector\DoctrineInflectorFOS\RestBundle\Negotiation\FormatNegotiatorFOS\RestBundle\Request\ParamFetcherFOS\RestBundle\Request\ParamReaderFOS\RestBundle\Request\RequestBodyParamConverterFOS\RestBundle\Response\AllowMethodsLoader\AllowedMethodsRouterLoaderFOS\RestBundle\Serializer\JMSSerializerAdapterFOS\RestBundle\Serializer\SymfonySerializerAdapterFOS\RestBundle\Version\ChainVersionResolverFOS\RestBundle\Version\Resolver\HeaderVersionResolverFOS\RestBundle\Version\Resolver\MediaTypeVersionResolverFOS\RestBundle\Version\Resolver\QueryParameterVersionResolverFOS\RestBundle\View\JsonpHandlerFOS\RestBundle\View\ViewFOS\RestBundle\View\ViewHandler