From 68808fbeba2255945dfad05eb1465a0e940ae63a Mon Sep 17 00:00:00 2001 From: Deividson Damasio Date: Thu, 24 Mar 2022 22:35:47 -0300 Subject: [PATCH] fixed var type for Intelephense --- app/Notifications/Portal/PaymentReceived.php | 2 +- app/Notifications/Purchase/Bill.php | 2 +- app/Notifications/Purchase/Payment.php | 2 +- app/Notifications/Sale/Invoice.php | 2 +- app/Notifications/Sale/Revenue.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Notifications/Portal/PaymentReceived.php b/app/Notifications/Portal/PaymentReceived.php index cd07d7ff4..60ea927b4 100644 --- a/app/Notifications/Portal/PaymentReceived.php +++ b/app/Notifications/Portal/PaymentReceived.php @@ -28,7 +28,7 @@ class PaymentReceived extends Notification /** * The email template. * - * @var string + * @var \App\Models\Common\EmailTemplate */ public $template; diff --git a/app/Notifications/Purchase/Bill.php b/app/Notifications/Purchase/Bill.php index b47a7758e..2f79f07f9 100644 --- a/app/Notifications/Purchase/Bill.php +++ b/app/Notifications/Purchase/Bill.php @@ -17,7 +17,7 @@ class Bill extends Notification /** * The email template. * - * @var string + * @var \App\Models\Common\EmailTemplate */ public $template; diff --git a/app/Notifications/Purchase/Payment.php b/app/Notifications/Purchase/Payment.php index c325c97f6..84e6d5a0b 100644 --- a/app/Notifications/Purchase/Payment.php +++ b/app/Notifications/Purchase/Payment.php @@ -21,7 +21,7 @@ class Payment extends Notification /** * The email template. * - * @var string + * @var \App\Models\Common\EmailTemplate */ public $template; diff --git a/app/Notifications/Sale/Invoice.php b/app/Notifications/Sale/Invoice.php index fd3364ff3..271219423 100644 --- a/app/Notifications/Sale/Invoice.php +++ b/app/Notifications/Sale/Invoice.php @@ -21,7 +21,7 @@ class Invoice extends Notification /** * The email template. * - * @var string + * @var \App\Models\Common\EmailTemplate */ public $template; diff --git a/app/Notifications/Sale/Revenue.php b/app/Notifications/Sale/Revenue.php index c041cc16b..608feaf9a 100644 --- a/app/Notifications/Sale/Revenue.php +++ b/app/Notifications/Sale/Revenue.php @@ -21,7 +21,7 @@ class Revenue extends Notification /** * The email template. * - * @var string + * @var \App\Models\Common\EmailTemplate */ public $template;