Skip to content

Commit

Permalink
Fix issue with abstract method
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamara committed Sep 30, 2024
1 parent 65f85c5 commit cd8bf51
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Migration/Migration1727273181AlterAdyenRefund.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ public function update(Connection $connection): void
SQL
);
} catch (Exception $exception) {
// Intentionally left empty, if foreign key is missing, the migration should be skipped.
}
}

public function updateDestructive(Connection $connection): void
{
// implement update destructive
}
}
6 changes: 6 additions & 0 deletions src/Migration/Migration1727273183AlterAdyenPaymentCapture.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ public function update(Connection $connection): void
SQL
);
} catch (Exception $exception) {
// Intentionally left empty, if foreign key is missing, the migration should be skipped.
}
}

public function updateDestructive(Connection $connection): void
{
// implement update destructive
}
}
6 changes: 6 additions & 0 deletions src/Migration/Migration1727273187AlterAdyenPayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ public function update(Connection $connection): void
SQL
);
} catch (Exception $exception) {
// Intentionally left empty, if foreign key is missing, the migration should be skipped.
}
}

public function updateDestructive(Connection $connection): void
{
// implement update destructive
}
}

0 comments on commit cd8bf51

Please sign in to comment.