- 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 11:56am 31 May 2024 - 🇦🇹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.