* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Shop\ValueObject; /** * Represents a relation identifier of Shop * This interface allows to explicitly define whether the shop relation is optional or required. * * @see ShopId * @see NoShopId */ interface ShopIdInterface { /** * @return int */ public function getValue(): int; }