Erdal G.

Results 8 comments of Erdal G.

As a workaround, you can disable inspection for `Symfony: Create a form view for passing to template` In `Settings > Editor > Inspection` search for "_Symfony_"

The workaround is: `λ npm install @capacitor-community/react-hooks --legacy-peer-deps` I've tested an app where I use a lot of different hooks from this package and everything seems fine. I think we...

Thanks @occino But I get "Invalid archive" arror when trying to install. Is it fully working in your Arduino IDE ?

Worked chosing RC0.0.2 though...

Hello @Koc ! Why "_Make final all classes that implement an interface_"? As it prevents to create any customized child Form Type 🤔

> > Which form type? Generally speaking, you won't extend a class implementing an interface: just use your own class @Koc Supposing you're advocating for composition over inheritance, I noted...

Btw, I don't see any interface here (except SF's AbstractType's one ofc): ``` class VichImageType extends VichFileType class VichFileType extends AbstractType ```

Thanks, @BoShurik . The getParent method indeed offers a structured approach for customizing form types per Symfony’s best practices, and it's a great fit for the example I used. That...