Hello, I'm trying the extension, so far, I'm really amazed by the autocomplete and formatting, it really is a all in one solution and it works great.
I'm only having one issue with the autoformating.
Everything works as intended, but the auto format on function parameters that use PHP8 Attributes are indented one level lower, here's what I'm expecting

#[Route('/api/some/route', methods: ['GET',])]
    public function index(
        EntityManagerInterface $em,
        #[CurrentUser] User $user,
        Request $request,
    ): Response {
    // My function code
    }

But here's what I get, the CurrentUser annotation is one level lower.

#[Route('/api/some/route', methods: ['GET',])]
    public function index(
        EntityManagerInterface $em,
    #[CurrentUser] User $user,
        Request $request,
    ): Response {
    // My function code
    }

This is with default settings, when I indent on format. The same happens with all attribute function parameters that are not inline and I really can't find how to tweak it, or if this is an indended behavior.

It could be nice to get a bit of help, or know if it's a issue that will be fixed :)

    Hello,

    Thank you very much for your kind words. We're glad you like our extension :-)

    This is indeed a bug, we will fix it ASAP.

    Thank you very much for letting us know.

      Thanks again for reporting this. We've fixed it and the update should be available very soon.

        Write a Reply...