<?php

declare(strict_types=1);

namespace Doctrine\Migrations\Tools\Console\Helper;

use Doctrine\Migrations\Configuration\Configuration;
use Symfony\Component\Console\Input\InputInterface;

/**
 * The ConfigurationHelper defines the interface for getting the Configuration instance to be used for migrations.
 */
interface ConfigurationHelper
{
    public function getConfiguration(
        InputInterface $input
    ): Configuration;
}
