| Total Complexity | 5 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class ConsoleInputMigratorConfigurationFactory implements MigratorConfigurationFactory |
||
| 12 | { |
||
| 13 | /** @var Configuration */ |
||
| 14 | private $configuration; |
||
| 15 | |||
| 16 | 13 | public function __construct(Configuration $configuration) |
|
| 17 | { |
||
| 18 | 13 | $this->configuration = $configuration; |
|
| 19 | 13 | } |
|
| 20 | |||
| 21 | 13 | public function getMigratorConfiguration(InputInterface $input) : MigratorConfiguration |
|
| 31 | } |
||
| 32 | } |
||
| 33 |