Drupal coding standards to be fixed

Created on 29 March 2022, about 3 years ago
Updated 15 July 2024, 9 months ago

Problem/Motivation

Fixing Drupal coding standards

Steps to reproduce

run phpcs to check

$ phpcs --standard=Drupal web/modules/contrib/cheeseburger_menu

FILE: /var/www/html/opensourcetesting/web/modules/contrib/cheeseburger_menu/cheeseburger_menu.post_update.php
-------------------------------------------------------------------------------------------------------------
FOUND 1 ERROR AND 1 WARNING AFFECTING 2 LINES
-------------------------------------------------------------------------------------------------------------
  1 | ERROR   | [x] Missing file doc comment
 14 | WARNING | [x] A comma should follow the last multiline array item. Found: 'cheeseburger_menu'
-------------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 2 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------------------------------------------------------


FILE: /var/www/html/opensourcetesting/web/modules/contrib/cheeseburger_menu/js/cheeseburger_menu.js
---------------------------------------------------------------------------------------------------
FOUND 17 ERRORS AFFECTING 6 LINES
---------------------------------------------------------------------------------------------------
   5 | ERROR | [x] Expected 1 space before "-"; 0 found
   5 | ERROR | [x] Expected 1 space after "-"; 0 found
   5 | ERROR | [x] Expected 1 space before "-"; 0 found
   5 | ERROR | [x] Expected 1 space after "-"; 0 found
   5 | ERROR | [x] Expected 1 space before "-"; 0 found
   5 | ERROR | [x] Expected 1 space after "-"; 0 found
   5 | ERROR | [x] Expected 1 space before "-"; 0 found
   5 | ERROR | [x] Expected 1 space after "-"; 0 found
  17 | ERROR | [x] Expected 1 space before "-"; 0 found
  17 | ERROR | [x] Expected 1 space after "-"; 0 found
  19 | ERROR | [x] Expected 1 space before "-"; 0 found
  19 | ERROR | [x] Expected 1 space after "-"; 0 found
 199 | ERROR | [x] Expected 1 space before ">"; 0 found
 256 | ERROR | [x] Expected 1 space before "="; 0 found
 256 | ERROR | [x] Expected 1 space after "="; 0 found
 312 | ERROR | [x] Expected 1 space before "="; 0 found
 312 | ERROR | [x] Expected 1 space after "="; 0 found
---------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 17 MARKED SNIFF VIOLATIONS AUTOMATICALLY
---------------------------------------------------------------------------------------------------


FILE: /var/www/html/opensourcetesting/web/modules/contrib/cheeseburger_menu/src/CheeseburgerMenuItem.php
--------------------------------------------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
--------------------------------------------------------------------------------------------------------
 152 | ERROR | [x] Expected "bool|string" but found "boolean|string" for parameter type
--------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
--------------------------------------------------------------------------------------------------------


FILE: /var/www/html/opensourcetesting/web/modules/contrib/cheeseburger_menu/src/CheeseburgerMenuService.php
-----------------------------------------------------------------------------------------------------------
FOUND 2 ERRORS AFFECTING 2 LINES
-----------------------------------------------------------------------------------------------------------
 52 | ERROR | Missing short description in doc comment
 57 | ERROR | Missing short description in doc comment
-----------------------------------------------------------------------------------------------------------


FILE: /var/www/html/opensourcetesting/web/modules/contrib/cheeseburger_menu/src/Plugin/Menu/LanguageSwitchMenuLink.php
----------------------------------------------------------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
----------------------------------------------------------------------------------------------------------------------
 47 | ERROR | Parameter $route_match is not described in comment
----------------------------------------------------------------------------------------------------------------------


FILE: /var/www/html/opensourcetesting/web/modules/contrib/cheeseburger_menu/src/Plugin/Block/CheeseburgerMenuBlock.php
----------------------------------------------------------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
----------------------------------------------------------------------------------------------------------------------
 345 | ERROR | [x] Expected 1 space after FOREACH keyword; 0 found
----------------------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
-------------------------------------------------------------

Proposed resolution

Fix errors as per standards

🐛 Bug report
Status

Needs work

Version

5.0

Component

Code

Created by

🇮🇳India karanpagare

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇮🇳India riddhi.addweb

    I tried #21 patch, but seems like the patch is not working.

    Checking patch cheeseburger_menu.install...
    Checking patch cheeseburger_menu.module...
    Hunk #1 succeeded at 195 (offset 7 lines).
    Hunk #2 succeeded at 213 (offset 7 lines).
    Checking patch cheeseburger_menu.post_update.php...
    Checking patch js/cheeseburger_menu.js...
    error: while searching for:
      Drupal.behaviors.cheeseburgermenuMain = {
        attach: function (context) {
          var TRIGGER = "data-cheeseburger-id";
          var MENU_TRIGGER = `.block-cheeseburgermenu__trigger-element, .block-cheeseburgermenu__trigger-element span`;
          var BACKDROP = ".cheeseburger-menu__backdrop";
          var BACKDROP_ACTIVE = `${BACKDROP}--active`;
          var BODY_ACTIVE = "body--has-active-cheese";
    
    error: patch failed: js/cheeseburger_menu.js:2
    error: js/cheeseburger_menu.js: patch does not apply
    Checking patch src/CheeseburgerMenuItem.php...
    Hunk #1 succeeded at 173 (offset 24 lines).
    Checking patch src/CheeseburgerMenuService.php...
    Hunk #1 succeeded at 51 (offset 1 line).
    Checking patch src/Plugin/Block/CheeseburgerMenuBlock.php...
    error: while searching for:
        $this->setConfigurationValue('parent_menu_as_link', $form_state->getValue('parent_menu_as_link'));
        $this->setConfigurationValue('show_navigation', $form_state->getValue('show_navigation'));
        $this->setConfigurationValue('invoke_hooks', $form_state->getValue('invoke_hooks'));
        foreach($form_state->getValue(['colors', 'row']) as $color_settings_values) {
          foreach ($color_settings_values as $color_setting_name => $color_setting_value) {
            $this->setConfigurationValue($color_setting_name, $color_setting_value);
          }
    
    error: patch failed: src/Plugin/Block/CheeseburgerMenuBlock.php:333
    error: src/Plugin/Block/CheeseburgerMenuBlock.php: patch does not apply
    Checking patch src/Plugin/Menu/LanguageSwitchMenuLink.php...
    error: while searching for:
       *   Path matcher.
       * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
       *   The entity type manager.
       */
      public function __construct(array $configuration, $plugin_id, $plugin_definition, LanguageManagerInterface $language_manager, PathMatcherInterface $path_matcher, EntityTypeManagerInterface $entity_type_manager, RouteMatchInterface $route_match) {
        parent::__construct($configuration, $plugin_id, $plugin_definition);
    
    error: patch failed: src/Plugin/Menu/LanguageSwitchMenuLink.php:59
    error: src/Plugin/Menu/LanguageSwitchMenuLink.php: patch does not apply
    
  • 🇨🇴Colombia ismaelromero Somewhere in the exotic Colombia

    I took the time to manually fix the patch because I also tried the check command, and it didn’t work. I have now rechecked it using:

    git apply --check coding-standards-3272168-20_0.patch  
    

    It passes the check successfully. Additionally, I will run phpcs again to verify if there are any remaining issues to fix. I’m leaving it here for you to test.

  • 🇨🇴Colombia ismaelromero Somewhere in the exotic Colombia

    I created the branch , applied the patch, and ran phpcs, which detected additional issues. After running phpcbf, several were fixed automatically, and I manually resolved the rest.

    The changes have been pushed, and a merge request is available here: Merge Request #7.

    Let me know your thoughts!

Production build 0.71.5 2024