-<?php namespace BookStack\Notifications;
+<?php
+
+namespace BookStack\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
/**
* Get the notification's channels.
*
- * @param mixed $notifiable
+ * @param mixed $notifiable
+ *
* @return array|string
*/
public function via($notifiable)
/**
* Create a new mail message.
+ *
* @return MailMessage
*/
protected function newMailMessage()
{
- return (new MailMessage)->view([
+ return (new MailMessage())->view([
'html' => 'vendor.notifications.email',
- 'text' => 'vendor.notifications.email-plain'
+ 'text' => 'vendor.notifications.email-plain',
]);
}
}