Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨 add type hints to assets method #208

Closed
wants to merge 2 commits into from

Conversation

codepuncher
Copy link

@codepuncher codepuncher commented Feb 28, 2024

Fixes #206

'public function enqueue($block)' => 'public function assets($block)',
'public function enqueue($block = [])' => 'public function assets($block)',
'public function enqueue()' => 'public function assets($block)',
'public function assets($block)' => 'public function assets(array $block)',
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sadly this wont work since PHP will throw an error when ACF Composer gets booted in CLI because the classes don't match the parent

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see. How would you like to handle this then?
Add manual update notes like you did for the v3 release?
sed -i 's/public function assets($block)/public function assets(array $block)/g' app/Blocks/*.php?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see. How would you like to handle this then? Add manual update notes like you did for the v3 release? sed -i 's/public function assets($block)/public function assets(array $block)/g' app/Blocks/*.php?

yeah sadly it would be another breaking change which i really didn't want to do. i actually intentionally renamed this from enqueue to assets just to avoid it - but its my bad for not adding the types. :/

i would probably just put it in the upgrade v3 upgrade guide and hope that there has been a lot of upgrades if i were to do this i guess.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also noticed that I missed off the :void return type from these upgrades anyway so the end result would be a fatal error.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pondering maybe removing assets() from the abstract class and doing a method_exists check or something instead. not sure, just a thought.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, I guess method_exists makes some sense; not all blocks have assets to enqueue so the user would only add assets() when they need it.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the other upgrades from enqueue() are still missing :void

src/Console/stubs/block.construct.stub Outdated Show resolved Hide resolved
src/Console/stubs/block.stub Outdated Show resolved Hide resolved
@Log1x
Copy link
Owner

Log1x commented Feb 29, 2024

With this needing a bit more work and me not having permission to make changes to your branch, I'm going to replace this PR with #210

@Log1x Log1x closed this Feb 29, 2024
@codepuncher codepuncher deleted the gh/issue/206 branch February 29, 2024 11:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Native type hinting
2 participants