| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 78.56% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class Migrate_6_11_0 implements MigrateContract |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Run migration. |
||
| 11 | */ |
||
| 12 | 23 | public function run(): bool |
|
| 13 | { |
||
| 14 | 23 | $this->migrateReviewNotifications(); |
|
| 15 | 23 | return true; |
|
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Rename WooCommerce Notification settings key (Review Notifications). |
||
| 20 | */ |
||
| 21 | 23 | public function migrateReviewNotifications(): void |
|
| 35 | } |
||
| 36 | } |
||
| 37 |