MyInvalidateTags::invalidateTags() wrongly returns a string

Created on 30 March 2025, 5 days ago

MyInvalidateTags::invalidateTags() contains the following code.

    parent::invalidateTags($tags); // TODO: Change the autogenerated
    $config = \Drupal::config('log_cache_tags.settings');
    $purge_add = $config->get('log_cache_tags');
    $output = '';

    if ($purge_add != FALSE) {
      // Log each time we send a record to the purge_queue_alt table.
      $date = date('m/d/Y h:i:sa', \Drupal::time()->getCurrentTime());
      $output .= $date . ' Cache Tags Invalidated: ' . implode(', ', $tags) . '. ';
      \Drupal::logger('log_cache_tags')->notice($output);
    }

    return $output;

That is wrong: Any implementation of CacheTagsInvalidatorInterface::invalidateTags() do not return any value. See BackendChain::invalidateTags(), for example: It just invalidates the tags, without returning any value.

The line which initializes $output to an empty string and the line returning its value must be removed.

🐛 Bug report
Status

Active

Version

2.0

Component

Code

Created by

🇮🇹Italy apaderno Brescia, 🇮🇹

Live updates comments and jobs are added and updated live.
  • Novice

    It would make a good project for someone who is new to the Drupal contribution process. It's preferred over Newbie.

Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024