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

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.  * @deprecated will be removed in Pimcore 11
  18.  *
  19.  * Handles a collection of session configurators.
  20.  */
  21. class SessionConfigurator implements SessionConfiguratorInterface
  22. {
  23.     /**
  24.      * @var SessionConfiguratorInterface[]
  25.      */
  26.     protected $configurators = [];
  27.     /**
  28.      * @param SessionConfiguratorInterface $configurator
  29.      */
  30.     public function addConfigurator(SessionConfiguratorInterface $configurator)
  31.     {
  32.         $this->configurators[] = $configurator;
  33.     }
  34.     /**
  35.      * @param SessionConfiguratorInterface[] $configurators
  36.      */
  37.     public function setConfigurators(array $configurators)
  38.     {
  39.         $this->configurators = [];
  40.         foreach ($configurators as $configurator) {
  41.             $this->addConfigurator($configurator);
  42.         }
  43.     }
  44.     /**
  45.      * {@inheritdoc}
  46.      */
  47.     public function configure(SessionInterface $session)
  48.     {
  49.         foreach ($this->configurators as $configurator) {
  50.             $configurator->configure($session);
  51.         }
  52.     }
  53. }