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

@@ -36,7 +36,6 @@ class VacancyStatusUpdated extends Notification implements ShouldQueue
protected string $status;
protected Vacancy $vacancy;
/**
@@ -49,7 +48,7 @@ class VacancyStatusUpdated extends Notification implements ShouldQueue
// there's no simpler solution to this for now, but an array works
$statusDict = [
'open' => 'opened',
'close' => 'closed'
'close' => 'closed',
];
$this->vacancy = $vacancy;
@@ -69,16 +68,15 @@ class VacancyStatusUpdated 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').' - Vacancy ' . $this->status)
->line('The vacancy '.$this->vacancy->vacancyName.', with '.$this->vacancy->vacancyCount.' remaining slots, has just been ' . $this->status . '.')
->subject(config('app.name').' - Vacancy '.$this->status)
->line('The vacancy '.$this->vacancy->vacancyName.', with '.$this->vacancy->vacancyCount.' remaining slots, has just been '.$this->status.'.')
->line('Please be aware that this position may be change at any time.')
->line('You are receiving this email because you currently have staff/team member privileges. Depending on your access level, you may not be able to view the list of positions on the backoffice.')
->action('View positions', url(route('showPositions')))
->salutation('The team at ' . config('app.name'));
->salutation('The team at '.config('app.name'));
}
/**