php style fixer

This commit is contained in:
Julie Lenaerts 2023-10-26 15:21:20 +02:00
parent c6deb21606
commit 5188891108
2 changed files with 2 additions and 4 deletions

View File

@ -25,7 +25,7 @@ use Symfony\Contracts\Translation\TranslatorInterface;
*/ */
class CustomFieldController extends AbstractController class CustomFieldController extends AbstractController
{ {
public function __construct(private readonly TranslatorInterface $translator){} public function __construct(private readonly TranslatorInterface $translator) {}
/** /**
* Creates a new CustomField entity. * Creates a new CustomField entity.

View File

@ -29,9 +29,7 @@ class PersonAddressController extends AbstractController
/** /**
* PersonAddressController constructor. * PersonAddressController constructor.
*/ */
public function __construct(private readonly ValidatorInterface $validator, private readonly TranslatorInterface $translator) public function __construct(private readonly ValidatorInterface $validator, private readonly TranslatorInterface $translator) {}
{
}
/** /**
* @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/address/create", name="chill_person_address_create", methods={"POST"}) * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/address/create", name="chill_person_address_create", methods={"POST"})