Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class MigrationContext extends BaseMigrationContext |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Revision log. |
||
22 | * |
||
23 | * @var RevisionLog |
||
24 | */ |
||
25 | private $_revisionLog; |
||
26 | |||
27 | /** |
||
28 | * Creates migration manager context. |
||
29 | * |
||
30 | * @param ExtendedPdoInterface $database Database. |
||
31 | * @param RevisionLog $revision_log Revision log. |
||
32 | */ |
||
33 | 1 | public function __construct(ExtendedPdoInterface $database, RevisionLog $revision_log) |
|
38 | 1 | } |
|
39 | |||
40 | /** |
||
41 | * Returns revision log. |
||
42 | * |
||
43 | * @return RevisionLog |
||
44 | */ |
||
45 | public function getRevisionLog() |
||
51 |