![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/module-two-factor-auth/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\TwoFactorAuth\Model; use Magento\Framework\Model\AbstractModel; use Magento\Framework\Api\DataObjectHelper; use Magento\Framework\Data\Collection\AbstractDb; use Magento\Framework\Model\Context; use Magento\Framework\Model\ResourceModel\AbstractResource; use Magento\Framework\Registry; use Magento\TwoFactorAuth\Api\Data\CountryInterface; use Magento\TwoFactorAuth\Api\Data\CountryInterfaceFactory; /** * Country Data model * * @SuppressWarnings(PHPMD.LongVariable) * @SuppressWarnings(PHPMD.CamelCaseMethodName) */ class Country extends AbstractModel { /** * @var DataObjectHelper */ private $dataObjectHelper; /** * @var CountryInterfaceFactory */ private $countryDataFactory; /** * @param Context $context * @param Registry $registry * @param DataObjectHelper $dataObjectHelper * @param CountryInterfaceFactory $countryDataFactory * @param AbstractResource|null $resource * @param AbstractDb|null $resourceCollection * @param array $data */ public function __construct( Context $context, Registry $registry, DataObjectHelper $dataObjectHelper, CountryInterfaceFactory $countryDataFactory, AbstractResource $resource = null, AbstractDb $resourceCollection = null, array $data = [] ) { parent::__construct($context, $registry, $resource, $resourceCollection, $data); $this->dataObjectHelper = $dataObjectHelper; $this->countryDataFactory = $countryDataFactory; } /** * @inheritDoc */ protected function _construct() { $this->_init(ResourceModel\Country::class); } /** * Retrieve Country model * * @return CountryInterface */ public function getDataModel(): CountryInterface { $countryData = $this->getData(); /** @var CountryInterface $countryDataObject */ $countryDataObject = $this->countryDataFactory->create(); $this->dataObjectHelper->populateWithArray( $countryDataObject, $countryData, CountryInterface::class ); $countryDataObject->setId($this->getId()); return $countryDataObject; } }