![]() 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 ConfigurationInterface { /**#@+ * Constants for keys of data array. Identical to the name of the getter in snake case */ const ENTITY_ID = 'config_id'; const SCOPE = 'scope'; const SCOPE_ID = 'scope_id'; const PATH = 'path'; const VALUE = 'value'; /**#@-*/ /** * @return int|null */ public function getId(); /** * @param int $value * @return ConfigurationInterface */ public function setId($value); /** * @return string|null */ public function getScope(); /** * @param string $scope * @return ConfigurationInterface */ public function setScope($scope); /** * @return int|null */ public function getScopeId(); /** * @param int $scopeId * @return ConfigurationInterface */ public function setScopeId($scopeId); /** * @return string|null */ public function getPath(); /** * @param string $path * @return ConfigurationInterface */ public function setPath($path); /** * @return string|null */ public function getValue(); /** * @param int $value * @return ConfigurationInterface */ public function setValue($value); }