Feature: Creating Skeleton for import command, interfaces, shopify importer

This commit is contained in:
2026-07-06 03:42:24 +03:00
parent 677b240a8d
commit cd9632a6bf
7 changed files with 147 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace Modules\Core\MigrateImport;
class ImportSpec
{
public function __construct(
public readonly string $source,
public readonly string $type,
public readonly ?string $filePath = null,
public readonly ?array $credentials = null,
) {
}
}