Remove unnessary touching of file

(cherry picked from commit 7f1a984848)
This commit is contained in:
David Bomba 2023-02-17 13:51:24 +11:00
parent 79b014c752
commit 0fcaac66eb

View file

@ -59,10 +59,10 @@ class InvoicePaidActivity implements ShouldQueue
$event->invoice->subscription->service()->planPaid($event->invoice);
}
try {
$event->invoice->service()->touchPdf();
} catch (\Exception $e) {
nlog(print_r($e->getMessage(), 1));
}
// try {
// $event->invoice->service()->touchPdf();
// } catch (\Exception $e) {
// nlog(print_r($e->getMessage(), 1));
// }
}
}