ChainCacheClearer.php 851 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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\HttpKernel\CacheClearer;
  11. /**
  12. * ChainCacheClearer.
  13. *
  14. * @author Dustin Dobervich <ddobervich@gmail.com>
  15. *
  16. * @final
  17. */
  18. class ChainCacheClearer implements CacheClearerInterface
  19. {
  20. private $clearers;
  21. /**
  22. * @param iterable<mixed, CacheClearerInterface> $clearers
  23. */
  24. public function __construct(iterable $clearers = [])
  25. {
  26. $this->clearers = $clearers;
  27. }
  28. /**
  29. * {@inheritdoc}
  30. */
  31. public function clear(string $cacheDir)
  32. {
  33. foreach ($this->clearers as $clearer) {
  34. $clearer->clear($cacheDir);
  35. }
  36. }
  37. }