* @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\Customer\Group\ValueObject; /** * Indicates that no group is specified */ class NoGroupId implements GroupIdInterface { /** * Value when no group is specified */ public const NO_GROUP_ID = 0; /** * {@inheritDoc} */ public function getValue(): int { return self::NO_GROUP_ID; } }