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

19
app/ImportAdapters/Cyca.php Executable file
View File

@@ -0,0 +1,19 @@
<?php
namespace App\ImportAdapters;
use App\Contracts\ImportAdapter;
use Illuminate\Http\Request;
class Cyca implements 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
{
return json_decode(file_get_contents($request->file('file')), true);
}
}