mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 17:54:57 +01:00
26 lines
583 B
PHP
26 lines
583 B
PHP
<?php
|
|
|
|
namespace App\Services\Migrators;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
abstract class Migrator
|
|
{
|
|
/**
|
|
* Convert migration data to a 2FAccounts collection.
|
|
*
|
|
* @return \Illuminate\Support\Collection<int|string, \App\Models\TwoFAccount> The converted accounts
|
|
*/
|
|
abstract public function migrate(mixed $migrationPayload) : Collection;
|
|
|
|
/**
|
|
* Pad a string to 8 chars min
|
|
*
|
|
* @return string The padded string
|
|
*/
|
|
protected function padToValidBase32Secret(string $string)
|
|
{
|
|
return str_pad($string, 8, '=');
|
|
}
|
|
}
|