Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | final class VersionFactory |
||
13 | { |
||
14 | /** @var Configuration */ |
||
15 | private $configuration; |
||
16 | |||
17 | /** @var VersionExecutorInterface */ |
||
18 | private $versionExecutor; |
||
19 | |||
20 | 132 | public function __construct(Configuration $configuration, VersionExecutorInterface $versionExecutor) |
|
24 | 132 | } |
|
25 | |||
26 | 71 | public function createVersion(string $version, string $migrationClassName) : Version |
|
36 |