Completed
Push — master ( 3601fa...98b6df )
by Lorenzo
07:57
created
src/MailHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,10 +43,10 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function sendEmail($tuttoOk, $mail, $vul)
45 45
     {
46
-        $soggetto=Config::get('composer-security-check.mailSubjectSuccess');
46
+        $soggetto = Config::get('composer-security-check.mailSubjectSuccess');
47 47
 
48 48
         if (!$tuttoOk) {
49
-            $soggetto=Config::get('composer-security-check.mailSubjetcAlarm');
49
+            $soggetto = Config::get('composer-security-check.mailSubjetcAlarm');
50 50
         }
51 51
 
52 52
         $validator = Validator::make(['email' => $mail], [
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         Mail::send(
62 62
             Config::get('composer-security-check.mailViewName'),
63 63
             ['vul' => $vul],
64
-            function ($message) use ($mail, $soggetto) {
64
+            function($message) use ($mail, $soggetto) {
65 65
                 $message->from(
66 66
                     Config::get('composer-security-check.mailFrom'),
67 67
                     Config::get('composer-security-check.mailFromName')
Please login to merge, or discard this patch.