initial commit

This commit is contained in:
2026-02-11 23:37:50 +01:00
commit 908cf42ad9
128 changed files with 17831 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace App\Services\Storage;
use Ramsey\Uuid\UuidInterface;
class DatabaseImportStorageProvider implements ProcessImportStorageProvider
{
public function fetchByUuid(UuidInterface $uuid): ?\App\Models\ContactImport
{
return \App\Models\ContactImport::query()->find($uuid->toString());
}
}