refactor: code style changes
Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
@@ -35,13 +35,11 @@ class ApplicationApproved extends Notification implements ShouldQueue
|
||||
{
|
||||
use Queueable, Cancellable;
|
||||
|
||||
|
||||
/**
|
||||
* @var Application The application we're notifying about
|
||||
*/
|
||||
public Application $application;
|
||||
|
||||
|
||||
/**
|
||||
* @var User The candidate
|
||||
*/
|
||||
@@ -76,7 +74,7 @@ class ApplicationApproved extends Notification implements ShouldQueue
|
||||
public function toMail($notifiable)
|
||||
{
|
||||
return (new MailMessage)
|
||||
->greeting('Hi ' . $notifiable->name . ',')
|
||||
->greeting('Hi '.$notifiable->name.',')
|
||||
->from(config('notification.sender.address'), config('notification.sender.name'))
|
||||
->subject(config('app.name').' - application approved')
|
||||
->line('Congratulations! Your most recent application has been approved by the reviewing team.')
|
||||
@@ -84,7 +82,7 @@ class ApplicationApproved extends Notification implements ShouldQueue
|
||||
->line('You should have received more information about your onboarding process by now.')
|
||||
->line('Good luck and welcome aboard!')
|
||||
->action('Sign in', url(route('login')))
|
||||
->salutation('The team at ' . config('app.name'));
|
||||
->salutation('The team at '.config('app.name'));
|
||||
}
|
||||
|
||||
public function toSlack($notifiable)
|
||||
|
Reference in New Issue
Block a user