Your IP : 216.73.217.117


Current Path : /var/www/v3.cesa.co.za/vendor/doctrine/migrations/src/Tools/Console/Helper/
Upload File :
Current File : /var/www/v3.cesa.co.za/vendor/doctrine/migrations/src/Tools/Console/Helper/ConfigurationHelper.php

<?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;
}