-
-
Notifications
You must be signed in to change notification settings - Fork 517
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
2.x cs imports #2700
2.x cs imports #2700
Conversation
- Add FullyQualifiedStrictTypesFixer rule - Add NoLeadingImportSlashFixer rule - Add SingleImportPerStatementFixer rule - Add GlobalNamespaceImportFixer rule - Fix code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be handled automatically by ECS? I like that! 👍
This does qualify as a coding standard change, right? Then we could add it to https://github.com/timber/timber/blob/2.x/.git-blame-ignore-revs as well.
Absolutely 🙂
Yes, just waited for approval before adding the commit to the ignore revs |
Oh, is your question also targeting the native function invocation? |
Not necessarily. My question was more like a rhetoric question. It was more like a remark, but formulated as a question, meaning: I didn’t know this could be handled by ECS! But let’s answer that other question, too!
If this can too be automated and is a performance improvement, then let’s go for it! 👍 |
Any supported rule in PHP CS Fixer can be handled automatically: https://cs.symfony.com/doc/rules/index.html Any fixable rule for PHPCS too. |
8d2534c
to
c749865
Compare
c749865
to
544720a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @nlemoine
This looks good to me! I saw that you also added the slashes for the native functions 👍.
So we only have to ignore the coding style commits and then we’re ready to merge. Or is there something else you still want to change?
Yes, I'd like to remove ECS from composer dependencies. I noticed a couple of times that coding standards are not always the same depending on lowest/highest and/or PHP version. I think it would better to avoid adding tooling in |
# Conflicts: # src/Attachment.php # src/ExternalImage.php # src/FileSize.php # src/Image.php # src/ImageHelper.php # src/Integration/AcfIntegration.php # src/Loader.php # src/Menu.php # src/Post.php # src/Theme.php # src/Timber.php
# Conflicts: # src/ImageDimensions.php # src/Post.php # src/Term.php
Good idea. Now that you mention it, I also realized there were some inconsistencies in the standards, but I couldn’t see why. Should we use a separate issue/PR to tackle that problem and finish this this pull request for now? |
Would an approach as Laravel Pint does it work? It uses Laravel Zero under the hood, which uses Box to build a standalone PHAR. |
# Conflicts: # src/Factory/PostFactory.php # src/ImageHelper.php # src/Integration/WpmlIntegration.php # src/Post.php # src/TextHelper.php # src/Timber.php
# Conflicts: # src/DateTimeHelper.php # src/Factory/PostFactory.php # src/Helper.php # src/Image.php # src/Integration/CoAuthorsPlus/CoAuthorsPlusUser.php # src/Menu.php # src/PagesMenu.php # src/Pagination.php # src/Post.php # src/PostsIterator.php # src/Term.php
# Conflicts: # src/Loader.php # src/Timber.php
@nlemoine Could we run the checks only when we use Composer dependencies with the |
# Conflicts: # .git-blame-ignore-revs
Issue
Not really an issue but Timber was using different kinds of imports. Sometimes
use Class
, sometimes\Class
.Solution
Let's keep it consistent and add some rules about imports.
Impact
None.
Considerations
I personally add a leading slash on native functions in my projects/libs: https://cs.symfony.com/doc/rules/function_notation/native_function_invocation.html
I would also add this rule in Timber if you're ok with this @gchtr and @jarednova.
This provides a tiny performance bump.
Many popular libraries apply that rule (one way or another):
https://github.com/Yoast/wordpress-seo/blob/23d1e56b67e21f6e2d34c9a78e1ee7c55bb43844/src/main.php#L56
https://github.com/doctrine/orm/blob/c5e4e41e0517887b7ce5ffd2d825f9c337bc5cd4/lib/Doctrine/ORM/Configuration.php#L52
https://github.com/symfony/asset/blob/a0ebf67f56f028217256d5f99438175430b3836c/UrlPackage.php#L48