Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / Path / AliasWhitelistInterface.php
1 <?php
2
3 namespace Drupal\Core\Path;
4
5 use Drupal\Core\Cache\CacheCollectorInterface;
6
7 /**
8  * Cache the alias whitelist.
9  *
10  * The whitelist contains the first element of the router paths of all
11  * aliases. For example, if /node/12345 has an alias then "node" is added to
12  * the whitelist. This optimization allows skipping the lookup for every
13  * /user/{user} path if "user" is not in the whitelist.
14  */
15 interface AliasWhitelistInterface extends CacheCollectorInterface {}