Spaces:
No application file
No application file
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; | |
} | |