mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-05 22:09:52 +01:00
21 lines
493 B
PHP
21 lines
493 B
PHP
<?php
|
|
|
|
namespace App\Services\Migrators;
|
|
|
|
use App\Contracts\MigrationService;
|
|
use \Illuminate\Support\Collection;
|
|
|
|
class AegisMigrator implements MigrationService
|
|
{
|
|
/**
|
|
* Convert migration data to a 2FAccounts collection.
|
|
*
|
|
* @param mixed $migrationPayload
|
|
* @return \Illuminate\Support\Collection The converted accounts
|
|
*/
|
|
public function migrate(mixed $migrationPayload) : Collection
|
|
{
|
|
return Collect(['collected from aegisMigrator']);
|
|
}
|
|
}
|