Passed
Push — master ( 229462...d74785 )
by Andreas
02:20 queued 14s
created

ConfigurationHelper   A

Complexity

Total Complexity 10

Size/Duplication

Total Lines 93
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 34
dl 0
loc 93
ccs 28
cts 28
cp 1
rs 10
c 0
b 0
f 0
wmc 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\Migrations\Tools\Console\Helper;
6
7
use Doctrine\Migrations\Configuration\Configuration;
8
use Symfony\Component\Console\Input\InputInterface;
9
10
/**
11
 * The ConfigurationHelper defines the interface for getting the Configuration instance to be used for migrations.
12
 */
13
interface ConfigurationHelper
14
{
15
    public function getConfiguration(
16
        InputInterface $input
17
    ) : Configuration;
18
}
19