- Issue created by @ptmkenny
- @ptmkenny opened merge request.
- Status changed to Needs review
about 2 years ago 9:48am 6 February 2023 - 🇯🇵Japan ptmkenny
This MR fixes all of the above warnings except the following:
FILE: /var/www/html/web/modules/contrib/permissionspolicy/src/Form/PermissionsPolicySettingsForm.php ---------------------------------------------------------------------------------------------------- FOUND 0 ERRORS AND 4 WARNINGS AFFECTING 4 LINES ---------------------------------------------------------------------------------------------------- 36 | WARNING | Unused private method getConfigurableFeatures() 245 | WARNING | #options values usually have to run through t() for translation 246 | WARNING | #options values usually have to run through t() for translation 247 | WARNING | #options values usually have to run through t() for translation ---------------------------------------------------------------------------------------------------- FILE: /var/www/html/web/modules/contrib/permissionspolicy/src/PermissionsPolicy.php ----------------------------------------------------------------------------------------------------------------------------- FOUND 1 ERROR AFFECTING 1 LINE ----------------------------------------------------------------------------------------------------------------------------- 156 | ERROR | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses ----------------------------------------------------------------------------------------------------------------------------- PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY -----------------------------------------------------------------------------------------------------------------------------
I did not fix the "inline comments" warning because it adds a period to the end of some code, whereas the point of the rule is to end sentences in a period.
I left the private method in place because I assume it will be used at some point.
I think the "#options values usually have to run through t() for translation" can be ignored because the options are the actual values used for the permission policy spec and not language dependent. I would ignore them in the linter but I couldn't find a good way to do that.
- 🇨🇦Canada gapple
The private method is actually already used, the sniff just appears to not pickup if a method is being called via
self
orstatic
Adding
phpcs:disable sniffName/code> to the relevant method/class/file docblock will suppress that sniff for the corresponding code block.
- Status changed to Fixed
about 2 years ago 5:43am 10 February 2023 Automatically closed - issue fixed for 2 weeks with no activity.