FIX: Remove toku concept in database

This commit is contained in:
Juan Pablo Vial
2025-05-27 18:35:06 -04:00
parent 2852816eae
commit f32204df97
4 changed files with 5 additions and 2 deletions

View File

@ -58,6 +58,7 @@ class Customer extends AbstractEndPoint
foreach ($customers as $customer) {
try {
$this->delete($customer->toku_id);
$this->customerRepository->remove($customer);
} catch (EmptyResponse $exception) {
$this->logger->warning($exception, ['customer' => $customer]);
}