![]() 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 ConfigurationStoreInterface { /**#@+ * Constants for keys of data array. Identical to the name of the getter in snake case */ const ENTITY_ID = 'entity_id'; const TITLE = 'title'; const STORES_IDS = 'stores_ids'; const CREATED_TIME = 'created_time'; const UPDATED_TIME = 'updated_time'; /**#@-*/ /** * @return int|null */ public function getId(); /** * @param int $value * @return ConfigurationStoreInterface */ public function setId($value); /** * @return string|null */ public function getTitle(); /** * @param string $title * @return ConfigurationStoreInterface */ public function setTitle($title); /** * @return string|null */ public function getStoresIds(); /** * @param string $storesIds * @return ConfigurationStoreInterface */ public function setStoresIds($storesIds); /** * @return string|null */ public function getCreatedTime(); /** * @param string $createdTime * @return ConfigurationStoreInterface */ public function setCreatedTime($createdTime); /** * @return string|null */ public function getUpdateTime(); /** * @param string $updateTime * @return ConfigurationStoreInterface */ public function setUpdateTime($updateTime); }