- Implementing
ParentNodeDefinitionInterface
without thegetChildNodeDefinitions()
method is deprecated.
- The
TraceableEventDispatcherInterface
has been deprecated.
-
Deprecated
bundle:controller:action
andservice:action
syntaxes to reference controllers. UseserviceOrFqcn::method
instead whereserviceOrFqcn
is either the service ID when using controllers as services or the FQCN of the controller.Before:
bundle_controller: path: / defaults: _controller: FrameworkBundle:Redirect:redirect service_controller: path: / defaults: _controller: app.my_controller:myAction
After:
bundle_controller: path: / defaults: _controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController::redirectAction service_controller: path: / defaults: _controller: app.my_controller::myAction
-
Deprecated
Symfony\Bundle\FrameworkBundle\Controller\ControllerNameParser
-
Warming up a router in
RouterCacheWarmer
that does not implement theWarmableInterface
is deprecated and will not be supported anymore in 5.0. -
The
RequestDataCollector
class has been deprecated. Use theSymfony\Component\HttpKernel\DataCollector\RequestDataCollector
class instead.
-
Passing the file size to the constructor of the
UploadedFile
class is deprecated. -
The
getClientSize()
method of theUploadedFile
class is deprecated. UsegetSize()
instead.
- The
ContextListener::setLogoutOnUserChange()
method is deprecated. - Using the
AdvancedUserInterface
is now deprecated. To use the existing functionality, create a custom user-checker based on theSymfony\Component\Security\Core\User\UserChecker
.
- The
logout_on_user_change
firewall option is deprecated. - The
SecurityUserValueResolver
class is deprecated, useSymfony\Component\Security\Http\Controller\UserValueResolver
instead.
- The
FileDumper::setBackup()
method is deprecated. - The
TranslationWriter::disableBackup()
method is deprecated.
- Deprecated relying on the default value (
false
) of thetwig.strict_variables
configuration option. You should use%kernel.debug%
explicitly instead, which will be the new default in 5.0.
- The
Email::__construct()
'strict' property is deprecated. Use 'mode'=>"strict" instead. - Calling
EmailValidator::__construct()
method with a boolean parameter is deprecated, useEmailValidator("strict")
instead. - Deprecated the
checkDNS
anddnsMessage
options of theUrl
constraint.
- Deprecated the
add
method in favor of theaddWorkflow
method inWorkflow\Registry
. - Deprecated
SupportStrategyInterface
in favor ofWorkflowSupportStrategyInterface
. - Deprecated the class
ClassInstanceSupportStrategy
in favor of the classInstanceOfSupportStrategy
.