You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a choice field (Radio, Select, etc.) is the last field in a repeater, any field after the endRepeater() call will cause PHPStan to throw the following error:
Call to method addRadio() on an unknown class Log1x\AcfComposer\Builder\Builder.
🪪 class.notFound
This can be fixed by adding use Log1x\AcfComposer\Builder; to src/Builder/ChoiceFieldBuilder.php - this is already on the similar src/Builder/FieldBuilder.php class.
I'll be making a PR shortlly to add the use statement