Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / Cache / CacheFactoryInterface.php
1 <?php
2
3 namespace Drupal\Core\Cache;
4
5 /**
6  * An interface defining cache factory classes.
7  */
8 interface CacheFactoryInterface {
9
10   /**
11    * Gets a cache backend class for a given cache bin.
12    *
13    * @param string $bin
14    *   The cache bin for which a cache backend object should be returned.
15    *
16    * @return \Drupal\Core\Cache\CacheBackendInterface
17    *   The cache backend object associated with the specified bin.
18    */
19   public function get($bin);
20
21 }