diff --git a/app/Events/Account/AccountCreated.php b/app/Events/Account/AccountCreated.php index f2149b2a82d2..0761cdf4b9ed 100644 --- a/app/Events/Account/AccountCreated.php +++ b/app/Events/Account/AccountCreated.php @@ -24,9 +24,6 @@ class AccountCreated { use Dispatchable, InteractsWithSockets, SerializesModels; - /** - * @var - */ public $user; public $company; diff --git a/app/Events/Contact/ContactLoggedIn.php b/app/Events/Contact/ContactLoggedIn.php index 577ebed0cde3..0e98a54449c6 100644 --- a/app/Events/Contact/ContactLoggedIn.php +++ b/app/Events/Contact/ContactLoggedIn.php @@ -25,9 +25,6 @@ class ContactLoggedIn { use Dispatchable, InteractsWithSockets, SerializesModels; - /** - * @var - */ public $client_contact; public $company; diff --git a/app/Events/Credit/CreditWasEmailed.php b/app/Events/Credit/CreditWasEmailed.php index 85024f7a99e7..5991e738c5f6 100644 --- a/app/Events/Credit/CreditWasEmailed.php +++ b/app/Events/Credit/CreditWasEmailed.php @@ -32,7 +32,7 @@ class CreditWasEmailed /** * Create a new event instance. * - * @param Credit $credit + * @param CreditInvitation $invitation * @param Company $company * @param array $event_vars */ diff --git a/app/Events/Credit/CreditWasRestored.php b/app/Events/Credit/CreditWasRestored.php index 5480641803e0..47e61522a4c2 100644 --- a/app/Events/Credit/CreditWasRestored.php +++ b/app/Events/Credit/CreditWasRestored.php @@ -23,7 +23,7 @@ class CreditWasRestored use SerializesModels; /** - * @var Client + * @var Credit */ public $credit; diff --git a/app/Events/Invoice/InvoiceWasEmailed.php b/app/Events/Invoice/InvoiceWasEmailed.php index d27aea3501cc..c33179095b43 100644 --- a/app/Events/Invoice/InvoiceWasEmailed.php +++ b/app/Events/Invoice/InvoiceWasEmailed.php @@ -23,7 +23,7 @@ class InvoiceWasEmailed use SerializesModels; /** - * @var Invoice + * @var InvoiceInvitation */ public $invitation; diff --git a/app/Events/Payment/Methods/MethodDeleted.php b/app/Events/Payment/Methods/MethodDeleted.php index 4b1d3d710397..5e80e20f8aea 100644 --- a/app/Events/Payment/Methods/MethodDeleted.php +++ b/app/Events/Payment/Methods/MethodDeleted.php @@ -26,7 +26,7 @@ class MethodDeleted /** * @var ClientGatewayToken */ - private $payment_method; + public $payment_method; public $company; diff --git a/app/Events/RecurringQuote/RecurringQuoteWasArchived.php b/app/Events/RecurringQuote/RecurringQuoteWasArchived.php index ba99fd7da48c..be35962d6d13 100644 --- a/app/Events/RecurringQuote/RecurringQuoteWasArchived.php +++ b/app/Events/RecurringQuote/RecurringQuoteWasArchived.php @@ -23,7 +23,7 @@ class RecurringQuoteWasArchived use SerializesModels; /** - * @var Invoice + * @var RecurringQuote */ public $recurring_quote; @@ -34,7 +34,7 @@ class RecurringQuoteWasArchived /** * Create a new event instance. * - * @param Invoice $recurring_quote + * @param RecurringQuote $recurring_quote * @param Company $company * @param array $event_vars */ diff --git a/app/Events/User/UserWasDeleted.php b/app/Events/User/UserWasDeleted.php index 04e6e68a2651..cae639e2088d 100644 --- a/app/Events/User/UserWasDeleted.php +++ b/app/Events/User/UserWasDeleted.php @@ -26,9 +26,6 @@ class UserWasDeleted { use Dispatchable, InteractsWithSockets, SerializesModels; - /** - * @var - */ public $user; public $creating_user; diff --git a/app/Events/User/UserWasRestored.php b/app/Events/User/UserWasRestored.php index 10870b0b09ed..2d722fd189a0 100644 --- a/app/Events/User/UserWasRestored.php +++ b/app/Events/User/UserWasRestored.php @@ -26,9 +26,6 @@ class UserWasRestored { use Dispatchable, InteractsWithSockets, SerializesModels; - /** - * @var - */ public $user; public $company; diff --git a/app/Events/User/UserWasUpdated.php b/app/Events/User/UserWasUpdated.php index 79bf871eaa56..a4eda9752c79 100644 --- a/app/Events/User/UserWasUpdated.php +++ b/app/Events/User/UserWasUpdated.php @@ -26,9 +26,6 @@ class UserWasUpdated { use Dispatchable, InteractsWithSockets, SerializesModels; - /** - * @var - */ public $user; public $creating_user;