Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | final class MigrationsExecutor implements MigrationsExecutorInterface |
||
13 | { |
||
14 | const UP = 'up'; |
||
15 | |||
16 | /** |
||
17 | * @var Configuration |
||
18 | */ |
||
19 | private $config; |
||
20 | |||
21 | /** |
||
22 | * @throws \ErrorException |
||
23 | */ |
||
24 | public function __construct(ContainerInterface $container, Connection $connection) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @throws \Doctrine\DBAL\Migrations\MigrationException |
||
32 | * @throws \Exception |
||
33 | */ |
||
34 | public function execute(string ...$versionList): void |
||
41 |