token-8.x-1.x-dev/src/Controller/TokenCacheController.php
src/Controller/TokenCacheController.php
<?php namespace Drupal\token\Controller; use Drupal\Core\Controller\ControllerBase; /** * Clears cache for tokens. */ class TokenCacheController extends ControllerBase { /** * Clear caches and redirect back to the frontpage. */ public function flush() { token_clear_cache(); $this->messenger()->addMessage($this->t('Token registry caches cleared.')); return $this->redirect('<front>'); } }