| @@ -43,7 +43,7 @@ discard block | ||
| 43 | 43 | */ | 
| 44 | 44 | public function via($notifiable) | 
| 45 | 45 |      { | 
| 46 | - return ['mail', 'database']; | |
| 46 | + return [ 'mail', 'database' ]; | |
| 47 | 47 | } | 
| 48 | 48 | |
| 49 | 49 | /** | 
| @@ -67,7 +67,7 @@ discard block | ||
| 67 | 67 |      { | 
| 68 | 68 | $count = count($this->jobs); | 
| 69 | 69 | $message = new JobMailMessage(); | 
| 70 | - $message->viewData['user_id'] = $notifiable->id; | |
| 70 | + $message->viewData[ 'user_id' ] = $notifiable->id; | |
| 71 | 71 | $message->subject($count.' job listings found especially for you') | 
| 72 | 72 |              ->greeting('Hello,') | 
| 73 | 73 |              ->line('We found the following jobs that we think you\'ll be interested in based on your search:') | 
| @@ -12,7 +12,7 @@ | ||
| 12 | 12 | */ | 
| 13 | 13 | public function up() | 
| 14 | 14 |      { | 
| 15 | -        Schema::create('notifications', function (Blueprint $table) { | |
| 15 | +        Schema::create('notifications', function(Blueprint $table) { | |
| 16 | 16 |              $table->uuid('id')->primary(); | 
| 17 | 17 |              $table->string('type'); | 
| 18 | 18 |              $table->uuid('notifiable_id'); |