* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShopBundle\Form\Admin\Configure\AdvancedParameters\Security; use PrestaShop\PrestaShop\Core\Configuration\DataConfigurationInterface; use PrestaShop\PrestaShop\Core\Form\FormDataProviderInterface; /** * This class is responsible of managing the data manipulated using forms * in "Configure > Advanced Parameters > Security" page. */ final class FormDataProvider implements FormDataProviderInterface { /** * @var DataConfigurationInterface */ private $dataConfiguration; public function __construct( DataConfigurationInterface $dataConfiguration ) { $this->dataConfiguration = $dataConfiguration; } /** * {@inheritdoc} */ public function getData() { return $this->dataConfiguration->getConfiguration(); } /** * {@inheritdoc} */ public function setData(array $data) { return $this->dataConfiguration->updateConfiguration($data); } }