* @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\Product\Combination\ValueObject; /** * Indicates that no combination was specified */ class NoCombinationId implements CombinationIdInterface { /** * Value when no combination is specified */ public const NO_COMBINATION_ID = 0; /** * @return int */ public function getValue(): int { return self::NO_COMBINATION_ID; } }