New in Symfony 6.1: Improvements Related to Types

UIDs Controller Resolver

        Contributed by Thomas Calvet
         in #44665.

Symfony provides argument value resolvers to transform certain arguments of controller methods into other objects. That's how you can get for example the current request object just by typing any argument with the Response class. In Symfony 6.1 we're add a new resolver to transform UID values into UID objects. For example, in previous Symfony versions you need to do this to get a UUID v4 from a controller argument:

    #[Route(path: '/token/{token}')]

public function someControllerMethod(string $token): Response { $token = UuidV4::fromRfc4122($token); // ... }

In Symfony 6.1 you can do the same type-hinting the controller argument with the type of object you want to receive:

    use Symfony\Component\Uid\UuidV4;

[Route(path: '/token/{token}')]

public function someControllerMethod(UuidV4 $token): Response { // ... }

Support for Mutation of Constructor Promoted Properties

        Contributed by Raphaël Voisin
         in #45062.

Starting from PHP 8.0, you can use constructor property promotion to declare properties directly in the constructor signature. However, you can use PHPdoc annotations to change the type of the properties. In Symfony 6.1 we've improved the PropertyInfo component to take into account those PHPdoc modifications. In the following example, the type of $someProperty will be reported as string instead of mixed:

    class SomeClass

{ /**

  • @param string $someProperty */ public function __construct(private mixed $someProperty) { } }

Backend Enums Controller Resolver

        Contributed by Maxime Steinhausser
         in #44831.

Another controller argument resolver added in Symfony 6.1 allows to transform arguments into backend enums cases. Take for example the well-known Suit enum example:

    namespace App\Model;

enum Suit: string { case Hearts = 'H'; case Diamonds = 'D'; case Clubs = 'C'; case Spades = 'S'; }

In Symfony 6.1 you can use Suit as the type of the controller argument. If the route parameter matches any of the enum values, Symfony will inject the enum case. Otherwise, it will return a 404 HTTP error:

    class CardController

{

[Route('/cards/{suit}')]

public function list(Suit $suit): Response
{
    // ...
}

}

PHPStan Pseudo-Types Support

        Contributed by Emil Masiakowski
         in #44451.

Thanks to the popularity of static analyzers such as PHPStan, more and more developers use pseudo-types that describe arguments and return values with more precision. For example, instead of string you can use non-empty-string; instead of int you can use positiveInt; instead of int|float you can use number, etc. In Symfony 6.1 we've improved the PropertyInfo to properly infer the right PHP type of a variable described with these pseudo-types:

    class SomeClass

{ /* @var negative-int / public $property1;

/** @var non-empty-array */
public $property2;

/** @var non-empty-list */
public $property3;

/** @var non-empty-lowercase-string */
public $property4;

}

In Symfony 6.1, the PHP type of these properties will be correctly inferred as integer, array, array and string respectively.

                Sponsor the Symfony project.

https://symfony.com/blog/new-in-symfony-6-1-improvements-related-to-types?utm_source=Symfony%20Blog%20Feed&utm_medium=feed

Létrehozva 3y | 2022. máj. 20. 11:20:10


Jelentkezéshez jelentkezzen be

EGYÉB POSTS Ebben a csoportban

New in Symfony 7.3: New Bridges and Improved Integrations

Symfony's bridge packages integrate third-party services, such as mailers, notifiers, and translation providers, into Symfony applications. With more than 120 bridges available today, Symfony supports

2025. máj. 23. 9:30:04 | Symfony
New in Symfony 7.3: Messenger Improvements

Symfony Messenger component keeps evolving to meet the needs of complex, modern applications. In Symfony 7.3, we're introducing several powerful features to it.

Run Process Using the Shell… https://s

2025. máj. 22. 7:50:11 | Symfony
New in Symfony 7.3: Routing Improvements

The Routing component provides an impressive list of features to map incoming URLs to your application code. Symfony 7.3 pushes it even further with a set of new features that improve developer experi

2025. máj. 21. 11:10:07 | Symfony
New in Symfony 7.3: JsonStreamer Component

Contributed by Mathias Arlaud in

2025. máj. 20. 9:30:13 | Symfony
Symfony UX CVE-2025-47946: Unsanitized HTML attribute injection via ComponentAttributes

Affected versions

Symfony UX symfony/ux-live-component and symfony/ux-twig-component versions <2.25.1 are affected by this security issue.

The issue has been fixed in the 2.25.1 version of these

2025. máj. 19. 12:40:14 | Symfony
New in Symfony 7.3: Yaml Improvements

Symfony has been reducing the need for configuration in applications for several years now. Thanks to PHP attributes, you can now configure most things alongside the relevant code, removing the need f

2025. máj. 19. 8:10:09 | Symfony
A Week of Symfony #959 (May 12–18, 2025)

This week, development activity focused on polishing Symfony 7.3 ahead of its final release in two weeks. We also continued publishing articles highlighting the new features of Symfony 7.3 and shared

2025. máj. 18. 8:50:08 | Symfony