chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Migration;
interface MigrationInterface
{
/**
* Returns true if the migration should be executed.
*/
public function shouldExecute(): bool;
/**
* Execute migration if applicable.
*/
public function execute(): void;
}