* @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\ValueObject; /** * Provides state id */ class NoCustomerId implements CustomerIdInterface { /** * @var int */ public const NO_CUSTOMER_ID_VALUE = 0; /** * @return int */ public function getValue(): int { return self::NO_CUSTOMER_ID_VALUE; } }