vendor/symfony/validator/Mapping/Cache/CacheInterface.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Validator\Mapping\Cache;
  11. use Symfony\Component\Validator\Mapping\ClassMetadata;
  12. @trigger_error(sprintf('The "%s" interface is deprecated since Symfony 4.4.'CacheInterface::class), \E_USER_DEPRECATED);
  13. /**
  14.  * Persists ClassMetadata instances in a cache.
  15.  *
  16.  * @author Bernhard Schussek <bschussek@gmail.com>
  17.  *
  18.  * @deprecated since Symfony 4.4.
  19.  */
  20. interface CacheInterface
  21. {
  22.     /**
  23.      * Returns whether metadata for the given class exists in the cache.
  24.      *
  25.      * @param string $class
  26.      */
  27.     public function has($class);
  28.     /**
  29.      * Returns the metadata for the given class from the cache.
  30.      *
  31.      * @param string $class Class Name
  32.      *
  33.      * @return ClassMetadata|false A ClassMetadata instance or false on miss
  34.      */
  35.     public function read($class);
  36.     /**
  37.      * Stores a class metadata in the cache.
  38.      */
  39.     public function write(ClassMetadata $metadata);
  40. }