refactor: code style changes

Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
2023-01-15 00:04:00 +00:00
parent 25155bff2e
commit 3727c84f3e
146 changed files with 1013 additions and 1341 deletions

View File

@@ -67,7 +67,7 @@ class NewContact extends Notification
'email',
])) {
return (new MailMessage)
->greeting('Hi ' . $notifiable->name . ',')
->greeting('Hi '.$notifiable->name.',')
->line('We\'ve received a new contact form submission in the StaffManagement app center.')
->line('This is what they sent: ')
->line('')
@@ -75,7 +75,7 @@ class NewContact extends Notification
->line('')
->line('This message was received from '.$this->message->get('ip').' and submitted by '.$this->message->get('email').'.')
->action('Sign in', url(route('login')))
->salutation('The team at ' . config('app.name'));
->salutation('The team at '.config('app.name'));
}
throw new \InvalidArgumentException('Invalid arguments supplied to NewContact!');