mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-23 22:58:35 +01:00
17 lines
358 B
PHP
17 lines
358 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use \Illuminate\Support\Collection;
|
|
|
|
interface MigrationService
|
|
{
|
|
/**
|
|
* Convert migration data to a 2FAccounts collection.
|
|
*
|
|
* @param mixed $migrationPayload
|
|
* @return \Illuminate\Support\Collection The converted accounts
|
|
*/
|
|
public function migrate(mixed $migrationPayload) : Collection;
|
|
}
|