Remove unnessary touching of file

This commit is contained in:
David Bomba 2023-02-17 13:51:24 +11:00
parent 75335ba8e4
commit 7f1a984848

View File

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