Automatically closed - issue fixed for 2 weeks with no activity.
9.3.6
rector/rector 0.12.17
palantirnet/drupal-rector 0.12.1
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?
Fixed
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.