richard
/
cyca
Archived
1
0
Fork 0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/app/Contracts/ImportAdapter.php

19 lines
428 B
PHP
Executable File

<?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;
}