* @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\Image\Command; use PrestaShop\PrestaShop\Core\Domain\Product\ValueObject\ProductId; use PrestaShop\PrestaShop\Core\Domain\Shop\ValueObject\ShopConstraint; /** * Adds new product image */ class AddProductImageCommand { /** * @var ProductId */ private $productId; /** * @var string */ private $filePath; /** * @var ShopConstraint */ private $shopConstraint; /** * @param int $productId * @param string $pathName * @param ShopConstraint $shopConstraint */ public function __construct( int $productId, string $pathName, ShopConstraint $shopConstraint ) { $this->productId = new ProductId($productId); $this->filePath = $pathName; $this->shopConstraint = $shopConstraint; } /** * @return ProductId */ public function getProductId(): ProductId { return $this->productId; } /** * @return string */ public function getFilePath(): string { return $this->filePath; } /** * @return ShopConstraint */ public function getShopConstraint(): ShopConstraint { return $this->shopConstraint; } }