| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | abstract class AbstractTranslationMigration |
||
| 14 | { |
||
| 15 | protected ExecutorInterface $migrationExecutor; |
||
| 16 | |||
| 17 | public function __construct(ExecutorInterface $migrationExecutor) |
||
| 20 | } |
||
| 21 | |||
| 22 | abstract public function up(): void; |
||
| 23 | |||
| 24 | public function addTranslation( |
||
| 43 | } |
||
| 44 | |||
| 45 | public function getVersionNumber(): string |
||
| 52 |