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

@@ -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)