ServicesResetter.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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\DependencyInjection;
  11. use Symfony\Contracts\Service\ResetInterface;
  12. /**
  13. * Resets provided services.
  14. *
  15. * @author Alexander M. Turek <me@derrabus.de>
  16. * @author Nicolas Grekas <p@tchwork.com>
  17. *
  18. * @internal
  19. */
  20. class ServicesResetter implements ResetInterface
  21. {
  22. private $resettableServices;
  23. private $resetMethods;
  24. /**
  25. * @param \Traversable<string, object> $resettableServices
  26. * @param array<string, string|string[]> $resetMethods
  27. */
  28. public function __construct(\Traversable $resettableServices, array $resetMethods)
  29. {
  30. $this->resettableServices = $resettableServices;
  31. $this->resetMethods = $resetMethods;
  32. }
  33. public function reset()
  34. {
  35. foreach ($this->resettableServices as $id => $service) {
  36. foreach ((array) $this->resetMethods[$id] as $resetMethod) {
  37. if ('?' === $resetMethod[0] && !method_exists($service, $resetMethod = substr($resetMethod, 1))) {
  38. continue;
  39. }
  40. $service->$resetMethod();
  41. }
  42. }
  43. }
  44. }