ChainCacheClearer.php 778 B

12345678910111213141516171819202122232425262728293031323334353637
  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. /**
  21. * @param iterable<mixed, CacheClearerInterface> $clearers
  22. */
  23. public function __construct(
  24. private iterable $clearers = [],
  25. ) {
  26. }
  27. public function clear(string $cacheDir): void
  28. {
  29. foreach ($this->clearers as $clearer) {
  30. $clearer->clear($cacheDir);
  31. }
  32. }
  33. }