Skip to content

Commit

Permalink
Add missing properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Baspa committed Sep 6, 2024
1 parent 14ce3ea commit 3152aab
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/Models/MailEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,21 @@

/**
* @property Mail $mail
* @property string $type
* @property string $ip_address
* @property string $hostname
* @property string $platform
* @property string $os
* @property string $browser
* @property string $user_agent
* @property string $city
* @property string $country_code
* @property string $link
* @property string $tag
* @property object $payload
* @property Carbon $occurred_at
* @property Carbon $created_at
* @property Carbon $updated_at
*/
class MailEvent extends Model
{
Expand Down Expand Up @@ -74,6 +89,6 @@ protected function getPastTenseNameAttribute(): string

protected function getEventClassAttribute(): string
{
return 'Vormkracht10\Mails\Events\Mail'.$this->past_tense_name;
return 'Vormkracht10\Mails\Events\Mail' . $this->past_tense_name;
}
}

0 comments on commit 3152aab

Please # to comment.