# fluent-cart/1.3.27/app/Modules/WooCommerceMigrator/Contracts/MigrationServiceInterface.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.3.27. 35 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.3.27/code/app/Modules/WooCommerceMigrator/Contracts/MigrationServiceInterface.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.3.27/raw/app/Modules/WooCommerceMigrator/Contracts/MigrationServiceInterface.php
- Modified: 2025-10-14T16:36:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.3.27/code/app/Modules/WooCommerceMigrator/Contracts/MigrationServiceInterface.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Modules\WooCommerceMigrator\Contracts;

interface MigrationServiceInterface
{
    /**
     * Check if the migration dependencies are met
     *
     * @return bool
     */
    public function checkDependencies(): bool;

    /**
     * Run the migration
     *
     * @param array $options Migration options
     * @return array Migration results with counts and status
     */
    public function migrate(array $options = []): array;

    /**
     * Get migration statistics/summary
     *
     * @return array
     */
    public function getStats(): array;

    /**
     * Clean up migration data (for fresh migrations)
     *
     * @return bool
     */
    public function cleanup(): bool;
} 
```
