SensioFrameworkExtraBundle icon indicating copy to clipboard operation
SensioFrameworkExtraBundle copied to clipboard

An extension to Symfony FrameworkBundle that adds annotation configuration for Controller classes

Results 79 SensioFrameworkExtraBundle issues
Sort by recently updated
recently updated
newest added

The SensioFrameworkExtraBundle was once created to add annotation support to controllers for projects using the Symfony framework. [In the words of Symfony creator Fabien](https://github.com/symfony/symfony/issues/44705#issuecomment-997463372): > These feature were in a...

It would be really great if `BackedEnum` are supported with `IsGranted` attribute.

Fixes #736 Symfony Authentication system has changed between version 5.2 and 5.4. The security bundle uses a config option 'enable_authenticator_manager' set to true if the new system is used.

I just updated my symfony from 5.1 to 5.3 and I am getting the follow warning message: sensio/framework-extra-bundle version 6.1.5 > Controller argument "user" collided with the built-in security expression...

https://symfony.com/doc/4.4/service_container/tags.html#tagged-services-with-priority describes that a static `getDefaultPriority()` method can be implemented on classes that are tagged/collected by autoconfiguration. This seems not to work for ParamConverter classes, probably because there is a...

### Symfony version(s) affected 5.4.0 ### Description Let's say I have a bunch of controllers: `ThisController`, `ThatController`, `FooController`, `BarController`. Some of them, e.g. `FooController` and `BarController` (but _not_ `ThisController` nor...

The user with role `PUBLIC_ACCESS` cannot access a route annotated with `@Security("is_granted('something')")`. Extra informations : 1) It does not even enter the Voter 2) Testing inside a controller the `$this->isGranted('something')`...

I am trying to understand what this does: ` * @Route("/foo", service="my.foo")`. Specifically, the `service` property. I understand it's (probably?) deprecated since I can't find any information about it, but...

**Symfony version(s) affected**: 5.3.0 **Description** when i use isgranted by injecting the security component i can pass an associative array as subject and get the same keys in the voter....

I'm using @IsGranted("ROLE_ADMIN") annotation on a controller method that also implicitly uses ParamConverter to fetch a Doctrine entity record. This works as expected if the record lookup value for the...