Completed
Push — master ( 82fb75...b618f7 )
by Karl
10s
created
app/Notifications/JobsCollected.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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:')
Please login to merge, or discard this patch.
database/migrations/2016_10_16_214801_create_notifications_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.