Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public static function getSubscribedServices()
/**
* Returns true if the service id is defined.
*
* @deprecated since 5.4, use method or constructor injection in your controller instead
* @deprecated since Symfony 5.4, use method or constructor injection in your controller instead
*/
protected function has(string $id): bool
{
Expand All @@ -123,7 +123,7 @@ protected function has(string $id): bool
*
* @return object The service
*
* @deprecated since 5.4, use method or constructor injection in your controller instead
* @deprecated since Symfony 5.4, use method or constructor injection in your controller instead
*/
protected function get(string $id): object
{
Expand Down Expand Up @@ -379,7 +379,7 @@ protected function createFormBuilder($data = null, array $options = []): FormBui
*
* @throws \LogicException If DoctrineBundle is not available
*
* @deprecated since 5.4, inject an instance of ManagerRegistry in your controller instead
* @deprecated since Symfony 5.4, inject an instance of ManagerRegistry in your controller instead
*/
protected function getDoctrine(): ManagerRegistry
{
Expand Down Expand Up @@ -439,7 +439,7 @@ protected function isCsrfTokenValid(string $id, ?string $token): bool
*
* @param object|Envelope $message The message or the message pre-wrapped in an envelope
*
* @deprecated since 5.4, inject an instance of MessageBusInterface in your controller instead
* @deprecated since Symfony 5.4, inject an instance of MessageBusInterface in your controller instead
*/
protected function dispatchMessage(object $message, array $stamps = []): Envelope
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ private function createRequestMatcher(ContainerBuilder $container, string $path
}

/**
* @deprecated since 5.4, use "addAuthenticatorFactory()" instead
* @deprecated since Symfony 5.4, use "addAuthenticatorFactory()" instead
*/
public function addSecurityListenerFactory(SecurityFactoryInterface $factory)
{
Expand Down