* @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\Theme\Command; use PrestaShop\PrestaShop\Core\Domain\Theme\ValueObject\ThemeImportSource; /** * Class ImportThemeCommand imports theme from given source. */ class ImportThemeCommand { /** * @var ThemeImportSource */ private $importSource; /** * @param ThemeImportSource $importSource */ public function __construct(ThemeImportSource $importSource) { $this->importSource = $importSource; } /** * @return ThemeImportSource */ public function getImportSource() { return $this->importSource; } }