ChainCacheClearer.php 772 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. public function __construct(iterable $clearers = [])
  22. {
  23. $this->clearers = $clearers;
  24. }
  25. /**
  26. * {@inheritdoc}
  27. */
  28. public function clear(string $cacheDir)
  29. {
  30. foreach ($this->clearers as $clearer) {
  31. $clearer->clear($cacheDir);
  32. }
  33. }
  34. }