Passed
Push — develop ( 95acb0...88fd4f )
by Jorijn
03:18
created
src/Notifications/SecuritySlackNotification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         return (new SlackMessage)
56 56
             ->from(config('app.url'))
57 57
             ->content("*Security Check Report:* `{$this->composerLockPath}`")
58
-            ->attachment(function ($attachment) {
58
+            ->attachment(function($attachment) {
59 59
                 $attachment->content($this->textFormatter())->markdown([ 'text' ]);
60 60
             });
61 61
     }
Please login to merge, or discard this patch.
src/Console/SecurityMailCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         }
56 56
 
57 57
         // get the recipients and filter out any configuration mistakes
58
-        $recipients = collect(config('laravel-security-checker.recipients', [ ]))->filter(function ($recipient) {
58
+        $recipients = collect(config('laravel-security-checker.recipients', [ ]))->filter(function($recipient) {
59 59
             return $recipient !== null && !empty($recipient);
60 60
         });
61 61
 
Please login to merge, or discard this patch.