Drupal investigation

EsiResponseCacheStrategyInterface.php 874B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * This code is partially based on the Rack-Cache library by Ryan Tomayko,
  8. * which is released under the MIT license.
  9. * (based on commit 02d2b48d75bcb63cf1c0c7149c077ad256542801)
  10. *
  11. * For the full copyright and license information, please view the LICENSE
  12. * file that was distributed with this source code.
  13. */
  14. namespace Symfony\Component\HttpKernel\HttpCache;
  15. /**
  16. * ResponseCacheStrategyInterface implementations know how to compute the
  17. * Response cache HTTP header based on the different response cache headers.
  18. *
  19. * @author Fabien Potencier <fabien@symfony.com>
  20. *
  21. * @deprecated since version 2.6, to be removed in 3.0. Use ResponseCacheStrategyInterface instead.
  22. */
  23. interface EsiResponseCacheStrategyInterface extends ResponseCacheStrategyInterface
  24. {
  25. }