* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\PrestaShop\Core\Domain\Shop\ValueObject; /** * Represents relation value when shop is not specified */ class NoShopId implements ShopIdInterface { /** * Value when shop is not specified */ public const NO_SHOP_ID = 0; /** * @return int */ public function getValue(): int { return self::NO_SHOP_ID; } }