Passed
Push — master ( d516cb...0547e9 )
by James
04:01 queued 11s
created
app/Mail/ImportFinished.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
      */
42 42
     public function build()
43 43
     {
44
-        $address = (string) config('mail.from.address');
45
-        $name    = (string) config('mail.from.name');
44
+        $address = (string)config('mail.from.address');
45
+        $name    = (string)config('mail.from.name');
46 46
 
47 47
         return $this->from($address, $name)->markdown('emails.import.finished');
48 48
     }
Please login to merge, or discard this patch.
app/Services/Import/Task/EmptyAccounts.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
         if ('withdrawal' === $transaction['type']) {
120 120
             $destName = $transaction['destination_name'] ?? '';
121
-            $destId   = (int) ($transaction['destination_id'] ?? 0);
121
+            $destId   = (int)($transaction['destination_id'] ?? 0);
122 122
             if ('' === $destName && 0 === $destId) {
123 123
                 Log::debug('Destination name and ID of withdrawal are empty, set to "(no name)".');
124 124
                 $transaction['destination_name'] = '(no name)';
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
         }
127 127
         if ('deposit' === $transaction['type']) {
128 128
             $sourceName = $transaction['source_name'] ?? '';
129
-            $sourceId   = (int) ($transaction['source_id'] ?? 0);
129
+            $sourceId   = (int)($transaction['source_id'] ?? 0);
130 130
             if ('' === $sourceName && 0 === $sourceId) {
131 131
                 Log::debug('Source name and ID of deposit are empty, set to "(no name)".');
132 132
                 $transaction['source_name'] = '(no name)';
Please login to merge, or discard this patch.