fix to import classnames in prodecural file is missing blank lines

Created on 16 February 2023, about 2 years ago
Updated 14 June 2024, 10 months ago

Problem/Motivation

The bot posted this patch https://www.drupal.org/project/field_tools/issues/3297214#comment-14611925 📌 Automated Drupal 10 compatibility fixes Active with this incorrect change:

diff --git a/field_tools.module b/field_tools.module
index 10faea5..c47b9ee 100644
--- a/field_tools.module
+++ b/field_tools.module
@@ -1,4 +1,10 @@
 <?php
+use Drupal\Core\Routing\RouteMatchInterface;
+use Drupal\field_tools\Form\FieldStorageConfigDeleteForm;
+use Drupal\field_tools\EntityHandler\FieldStorageConfigAccess;
+use Drupal\Core\Entity\Routing\AdminHtmlRouteProvider;
+use Drupal\Core\Entity\EntityInterface;
+use Drupal\Core\Url;
 /**
  * @file field_tools.module
  * Contains useful tools for working with fields.

There should be a blank line before and after the use lines.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

💬 Support request
Status

Fixed

Version

8.3

Component

Coder Sniffer

Created by

🇬🇧United Kingdom joachim

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

Comments & Activities

  • Issue created by @joachim
  • 🇦🇹Austria klausi 🇦🇹 Vienna

    Just tested this locally with

    
    /**
     * @file field_tools.module
     * Contains useful tools for working with fields.
     */
    
    /**
     * Implements hook_help().
     */
    function field_tools_help($route_name, \Drupal\Core\Routing\RouteMatchInterface $route_match) {
    }
    

    When I then execute phpcbf with the full Drupal default ruleset it is fixed correctly to

    
    /**
     * @file
     * Field_tools.module
     * Contains useful tools for working with fields.
     */
    
    use Drupal\Core\Routing\RouteMatchInterface;
    
    /**
     * Implements hook_help().
     */
    function field_tools_help($route_name, RouteMatchInterface $route_match) {
    }
    

    So that seems to work correctly.

    Maybe the bot is executing phpcbf with a customized ruleset and not all fixer sniffs are executed? In that case there is not really something we can do in Coder I guess. Let me know if that makes sense.

  • 🇬🇧United Kingdom joachim

    Can you maybe try it with more than one import?

    If that still works, then either it's outdated or it's the d.org bot.

  • Status changed to Fixed 10 months ago
  • 🇦🇹Austria klausi 🇦🇹 Vienna

    Also works for this code:

    
    /**
     * @file field_tools.module
     * Contains useful tools for working with fields.
     */
    
    /**
     * Implements hook_help().
     */
    function field_tools_help($route_name, \Drupal\Core\Routing\RouteMatchInterface $route_match, \Drupal\Core\Routing\RouteMatchInterface2 $route_match2) {
    }
    
    

    which is fixed to

    
    /**
     * @file
     * Field_tools.module
     * Contains useful tools for working with fields.
     */
    
    use Drupal\Core\Routing\RouteMatchInterface;
    use Drupal\Core\Routing\RouteMatchInterface2;
    
    /**
     * Implements hook_help().
     */
    function field_tools_help($route_name, RouteMatchInterface $route_match, RouteMatchInterface2 $route_match2) {
    }
    
    

    So that also seems to be more working.

    Please check what phpcs config and coder version your test run uses.

  • 🇬🇧United Kingdom joachim

    > Please check what phpcs config and coder version your test run uses.

    This was the update bot that posts patches on d.org.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024