| Total Complexity | 1 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class CmsTemplateWriterStep implements DataImportStepInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | public const KEY_TEMPLATE_NAME = 'template_name'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | public const KEY_TEMPLATE_PATH = 'template_path'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param \Spryker\Zed\DataImport\Business\Model\DataSet\DataSetInterface $dataSet |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function execute(DataSetInterface $dataSet): void |
||
| 44 |