Completed
Pull Request — master (#11)
by Karl
02:49
created
resources/views/vendor/notifications/email-plain.blade.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,20 +1,20 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! empty($greeting)) {
3
+if (!empty($greeting)) {
4 4
     echo $greeting, "\n\n";
5 5
 } else {
6 6
     echo $level == 'error' ? 'Whoops!' : 'Hello!', "\n\n";
7 7
 }
8 8
 
9
-if (! empty($introLines)) {
9
+if (!empty($introLines)) {
10 10
     echo implode("\n", $introLines), "\n\n";
11 11
 }
12 12
 
13 13
 if (isset($jobListings)) {
14 14
     foreach ($jobListings as $listing) {
15
-        echo "{$listing['text']}: {$listing['link']}", "\n";
16
-        if ($listing['date']) {
17
-            echo "Posted on {$listing['date']}", "\n\n";
15
+        echo "{$listing[ 'text' ]}: {$listing[ 'link' ]}", "\n";
16
+        if ($listing[ 'date' ]) {
17
+            echo "Posted on {$listing[ 'date' ]}", "\n\n";
18 18
         }
19 19
     }
20 20
 }
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     echo "{$actionText}: {$actionUrl}", "\n\n";
24 24
 }
25 25
 
26
-if (! empty($outroLines)) {
26
+if (!empty($outroLines)) {
27 27
     echo implode("\n", $outroLines), "\n\n";
28 28
 }
29 29
 
Please login to merge, or discard this patch.