![]() 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/old/vendor/extmag/shiplab/Model/ |
<?php /** * Copyright © Extmag. All rights reserved. */ namespace Extmag\Shiplab\Model; use Extmag\Shiplab\Api\Data\ConfigurationScopeInterface; use Magento\Framework\Model\AbstractModel; class ConfigurationScope extends AbstractModel implements ConfigurationScopeInterface { /** * @inheritDoc */ protected function _construct() { parent::_construct(); $this->_init(ResourceModel\ConfigurationScope::class); } /** * @inheritDoc */ public function getId() { return parent::getData(self::ENTITY_ID); } /** * @inheritDoc */ public function getCreatedTime() { return parent::getData(self::CREATED_TIME); } /** * @inheritDoc */ public function getUpdateTime() { return parent::getData(self::UPDATED_TIME); } /** * @inheritDoc */ public function setId($value) { return $this->setData(self::ENTITY_ID, $value); } /** * @inheritDoc */ public function setCreatedTime($createdTime) { return $this->setData(self::CREATED_TIME, $createdTime); } /** * @inheritDoc */ public function setUpdateTime($updateTime) { return $this->setData(self::UPDATED_TIME, $updateTime); } /** * @inheritDoc */ public function getStore() { return parent::getData(self::STORE); } /** * @inheritDoc */ public function getDirection() { return parent::getData(self::DIRECTION); } /** * @inheritDoc */ public function getCountry() { return parent::getData(self::COUNTRY); } /** * @inheritDoc */ public function setStore($store) { return $this->setData(self::STORE, $store); } /** * @inheritDoc */ public function setDirection($direction) { return $this->setData(self::DIRECTION, $direction); } /** * @inheritDoc */ public function setCountry($country) { return $this->setData(self::COUNTRY, $country); } }