From 7f1a98484820707fa16a2ad692c22fe3ebf9e1b3 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 17 Feb 2023 13:51:24 +1100 Subject: [PATCH] Remove unnessary touching of file --- app/Listeners/Invoice/InvoicePaidActivity.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Listeners/Invoice/InvoicePaidActivity.php b/app/Listeners/Invoice/InvoicePaidActivity.php index 998783e4c200..e33c837bce10 100644 --- a/app/Listeners/Invoice/InvoicePaidActivity.php +++ b/app/Listeners/Invoice/InvoicePaidActivity.php @@ -57,10 +57,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)); + // } } }