* @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\Manufacturer\Command; /** * Creates manufacturer with provided data */ class AddManufacturerCommand { /** * @var string */ private $name; /** * @var string[] */ private $localizedShortDescriptions; /** * @var string[] */ private $localizedDescriptions; /** * @var string[] */ private $localizedMetaTitles; /** * @var string[] */ private $localizedMetaDescriptions; /** * @var string[] */ private $localizedMetaKeywords; /** * @var bool */ private $enabled; /** * @var array */ private $shopAssociation; /** * @param string $name * @param bool $enabled * @param string[] $localizedShortDescriptions * @param string[] $localizedDescriptions * @param string[] $localizedMetaTitles * @param string[] $localizedMetaDescriptions * @param string[] $localizedMetaKeywords * @param array $shopAssociation */ public function __construct( $name, $enabled, array $localizedShortDescriptions, array $localizedDescriptions, array $localizedMetaTitles, array $localizedMetaDescriptions, array $localizedMetaKeywords, array $shopAssociation ) { $this->name = $name; $this->enabled = $enabled; $this->localizedShortDescriptions = $localizedShortDescriptions; $this->localizedDescriptions = $localizedDescriptions; $this->localizedMetaTitles = $localizedMetaTitles; $this->localizedMetaDescriptions = $localizedMetaDescriptions; $this->localizedMetaKeywords = $localizedMetaKeywords; $this->shopAssociation = $shopAssociation; } /** * @return string */ public function getName() { return $this->name; } /** * @return string[] */ public function getLocalizedShortDescriptions() { return $this->localizedShortDescriptions; } /** * @return string[] */ public function getLocalizedDescriptions() { return $this->localizedDescriptions; } /** * @return string[] */ public function getLocalizedMetaTitles() { return $this->localizedMetaTitles; } /** * @return string[] */ public function getLocalizedMetaDescriptions() { return $this->localizedMetaDescriptions; } /** * @return string[] */ public function getLocalizedMetaKeywords() { return $this->localizedMetaKeywords; } /** * @return bool */ public function isEnabled() { return $this->enabled; } /** * @return array */ public function getShopAssociation() { return $this->shopAssociation; } }