Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / validator / Mapping / Cache / DoctrineCache.php
index 6dd5447fedc88a98d44b935ac99ee278bc4464cd..36f1febc5ac6718d4d90721d5e661e8db7a00f90 100644 (file)
@@ -23,21 +23,11 @@ final class DoctrineCache implements CacheInterface
 {
     private $cache;
 
-    /**
-     * Creates a new Doctrine cache.
-     *
-     * @param Cache $cache The cache to adapt
-     */
     public function __construct(Cache $cache)
     {
         $this->cache = $cache;
     }
 
-    /**
-     * Sets the cache to adapt.
-     *
-     * @param Cache $cache The cache to adapt
-     */
     public function setCache(Cache $cache)
     {
         $this->cache = $cache;