![]() 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/core/Api/Data/ |
<?php /** * Copyright © Extmag. All rights reserved. */ namespace Extmag\Core\Api\Data; interface ConfigInterface { /**#@+ * Constants for keys of data array. Identical to the name of the getter in snake case */ const ENTITY_ID = 'entity_id'; const MODULE = 'module'; const PATH = 'path'; const VALUE = 'value'; const CREATED_TIME = 'created_time'; /**#@-*/ /** * Get ID * * @return int|null */ public function getId(); /** * @return string|null */ public function getModule(); /** * @return string|null */ public function getPath(); /** * @return string|null */ public function getValue(); /** * @return string|null */ public function getCreatedTime(); /** * @param int $id * @return ConfigInterface */ public function setId($id); /** * @param string $module * @return ConfigInterface */ public function setModule($module); /** * @param string $path * @return ConfigInterface */ public function setPath($path); /** * @param string $value * @return ConfigInterface */ public function setValue($value); /** * @param string $createdTime * @return ConfigInterface */ public function setCreatedTime($createdTime); }