Rector wants to remove namespace in PHPDoc

Created on 13 March 2022, about 3 years ago
Updated 23 March 2023, about 2 years ago

Drupal version

9.3.6

Drupal Rector version

rector/rector 0.12.17
palantirnet/drupal-rector 0.12.1

Problem / Motivation

Since an update, Rector wants to apply the following changes.


    * @param string $code
    *   The vocabulary code identifier.
    *
-   * @return \Drupal\Core\Entity\EntityInterface|null
+   * @return EntityInterface|null
    *   The taxonomy term if retrieved, or NULL.
    */
   public function getExistingTerm(string $vocabulary, string $code): ?EntityInterface;


   /**
    * ImportService constructor.
    *
-   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManagerInterface
+   * @param EntityTypeManagerInterface $entityTypeManagerInterface
    *   The entity type manager.
-   * @param \Drupal\Core\Queue\QueueFactory $queueFactory
+   * @param QueueFactory $queueFactory
    *   The queue factory.
-   * @param \Psr\Log\LoggerInterface $logger
+   * @param LoggerInterface $logger
    *   The logger service.
    */
   public function __construct(


private function isWritersToNotifyNotification(array $data): bool {
-    /** @var \Drupal\content_moderation_notifications\ContentModerationNotificationInterface $notification */
+    /** @var ContentModerationNotificationInterface $notification */
     $notification = $data['notification'];
     if ($notification->id() != self::WRITERS_TO_NOTIFY_NOTIFICATION) {
       return FALSE;
    ----------- end diff -----------
Applied rules:
 * ArgumentRemoverRector
 * PseudoNamespaceToNamespaceRector
 * WrapReturnRector
 * AddParamTypeDeclarationRector


I think it is due to the "PseudoNamespaceToNamespaceRector" rule.

Should it be disabled by default by Drupal Rector or is it a new Drupal coding standard that I was not aware of?

πŸ’¬ Support request
Status

Fixed

Component

Code

Created by

πŸ‡«πŸ‡·France Grimreaper France πŸ‡«πŸ‡·

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

Comments & Activities

Not all content is available!

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

Production build 0.71.5 2024