| Total Complexity | 4 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class Rollup |
||
| 15 | { |
||
| 16 | /** @var Configuration */ |
||
| 17 | private $configuration; |
||
| 18 | |||
| 19 | /** @var Connection */ |
||
| 20 | private $connection; |
||
| 21 | |||
| 22 | /** @var MigrationRepository */ |
||
| 23 | private $migrationRepository; |
||
| 24 | |||
| 25 | 4 | public function __construct( |
|
| 26 | Configuration $configuration, |
||
| 27 | Connection $connection, |
||
| 28 | MigrationRepository $migrationRepository |
||
| 29 | ) { |
||
| 30 | 4 | $this->configuration = $configuration; |
|
| 31 | 4 | $this->connection = $connection; |
|
| 32 | 4 | $this->migrationRepository = $migrationRepository; |
|
| 33 | 4 | } |
|
| 34 | |||
| 35 | 4 | public function rollup() : Version |
|
| 59 | } |
||
| 60 | } |
||
| 61 |