mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 17:54:57 +01:00
16 lines
374 B
PHP
16 lines
374 B
PHP
<?php
|
|
|
|
namespace App\Factories;
|
|
|
|
use App\Services\Migrators\Migrator;
|
|
|
|
interface MigratorFactoryInterface
|
|
{
|
|
/**
|
|
* Infer the type of migrator needed from a payload and create the migrator
|
|
*
|
|
* @param string $migrationPayload The migration payload used to infer the migrator type
|
|
*/
|
|
public function create(string $migrationPayload) : Migrator;
|
|
}
|