/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Domain/Cart/ValueObject
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Domain/Cart/ValueObject/CartId.php (1825B)
* @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\Cart\ValueObject;
use PrestaShop\PrestaShop\Core\Domain\Cart\Exception\CartConstraintException;
/**
* Cart identity
*/
class CartId
{
/**
* @var int
*/
private $cartId;
/**
* @param int $cartId
*
* @throws CartConstraintException if cart id is not valid
*/
public function __construct($cartId)
{
if (!is_int($cartId) || 0 >= $cartId) {
throw new CartConstraintException(sprintf('Cart id must be integer greater than zero, but %s given.', var_export($cartId, true)));
}
$this->cartId = $cartId;
}
/**
* @return int
*/
public function getValue()
{
return $this->cartId;
}
}