This commit is contained in:
Richard Dern
2022-01-12 00:35:37 +01:00
commit 400e3d01f1
1363 changed files with 57778 additions and 0 deletions

18
app/Contracts/ImportAdapter.php Executable file
View File

@@ -0,0 +1,18 @@
<?php
namespace App\Contracts;
use Illuminate\Http\Request;
/**
* Interface for data importers.
*/
interface ImportAdapter
{
/**
* Transforms data from specified request into an importable array. Data
* collected from the request could be an uploaded file, credentials for
* remote connection, anything the adapter could support.
*/
public function importFromRequest(Request $request): array;
}