Test Setup Failed
Pull Request — master (#90)
by Curtis
16:53 queued 10:53
created
app/Models/ForumCategory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         parent::boot();
19 19
 
20
-        static::creating(function ($category) {
20
+        static::creating(function($category) {
21 21
             $category->slug = Str::slug($category->name);
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
app/Models/ForumTopic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     {
18 18
         parent::boot();
19 19
 
20
-        static::creating(function ($topic) {
20
+        static::creating(function($topic) {
21 21
             $topic->slug = Str::slug($topic->title);
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
app/Notifications/SubscribeSuccessfully.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         return (new MailMessage)
51 51
                     ->subject('subscribed Successfully!')
52 52
                     ->line('You have subscribed successfully!')
53
-                    ->line('Subscription Plan:'.$this->plan->nickname)
53
+                    ->line('Subscription Plan:' . $this->plan->nickname)
54 54
                     ->line('Thank you for using Genealogia!');
55 55
     }
56 56
 
Please login to merge, or discard this patch.
app/Notifications/VerifyNotification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
             'hash' => sha1($notifiable->getEmailForVerification()),
46 46
         ];
47 47
 
48
-        $url = env('FRONTEND_URL').'/verify-email?';
48
+        $url = env('FRONTEND_URL') . '/verify-email?';
49 49
 
50 50
         foreach ($param as $key => $params) {
51 51
             $url .= "{$key}={$params}&";
Please login to merge, or discard this patch.
app/Notifications/ResetPassword.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         return (new MailMessage)
25 25
             ->subject('Your Reset Password Subject Here')
26 26
             ->line('You are receiving this email because we received a password reset request for your account.')
27
-            ->action('Reset Password', env('FRONTEND_URL', 'http://localhost:3000').'/password/reset/'.$this->token)
27
+            ->action('Reset Password', env('FRONTEND_URL', 'http://localhost:3000') . '/password/reset/' . $this->token)
28 28
             ->line('If you did not request a password reset, no further action is required.');
29 29
     }
30 30
 }
Please login to merge, or discard this patch.