![]() 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/Api/Data/ |
<?php /** * Copyright © Extmag. All rights reserved. */ namespace Extmag\Shiplab\Api\Data; interface ConfigurationScopeInterface { /**#@+ * Constants for keys of data array. Identical to the name of the getter in snake case */ const ENTITY_ID = 'entity_id'; const STORE = 'store'; const DIRECTION = 'direction'; const COUNTRY = 'country'; const CREATED_TIME = 'created_time'; const UPDATED_TIME = 'updated_time'; /**#@-*/ /** * @return int|null */ public function getId(); /** * @param int $value * @return ConfigurationScopeInterface */ public function setId($value); /** * @return string|null */ public function getStore(); /** * @param string $store * @return ConfigurationScopeInterface */ public function setStore($store); /** * @return string|null */ public function getDirection(); /** * @param string $direction * @return ConfigurationScopeInterface */ public function setDirection($direction); /** * @return string|null */ public function getCountry(); /** * @param int $country * @return ConfigurationScopeInterface */ public function setCountry($country); /** * @return string|null */ public function getCreatedTime(); /** * @param string $createdTime * @return ConfigurationScopeInterface */ public function setCreatedTime($createdTime); /** * @return string|null */ public function getUpdateTime(); /** * @param string $updateTime * @return ConfigurationScopeInterface */ public function setUpdateTime($updateTime); }