vendor/pimcore/pimcore/lib/Session/SessionConfigurator.php line 53

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Commercial License (PCL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  13.  */
  14. namespace Pimcore\Session;
  15. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  16. /**
  17.  * Handles a collection of session configurators.
  18.  */
  19. class SessionConfigurator implements SessionConfiguratorInterface
  20. {
  21.     /**
  22.      * @var SessionConfiguratorInterface[]
  23.      */
  24.     protected $configurators = [];
  25.     /**
  26.      * @param SessionConfiguratorInterface $configurator
  27.      */
  28.     public function addConfigurator(SessionConfiguratorInterface $configurator)
  29.     {
  30.         $this->configurators[] = $configurator;
  31.     }
  32.     /**
  33.      * @param SessionConfiguratorInterface[] $configurators
  34.      */
  35.     public function setConfigurators(array $configurators)
  36.     {
  37.         $this->configurators = [];
  38.         foreach ($configurators as $configurator) {
  39.             $this->addConfigurator($configurator);
  40.         }
  41.     }
  42.     /**
  43.      * {@inheritdoc}
  44.      */
  45.     public function configure(SessionInterface $session)
  46.     {
  47.         foreach ($this->configurators as $configurator) {
  48.             $configurator->configure($session);
  49.         }
  50.     }
  51. }