@@ -41,8 +41,8 @@ |
||
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 | } |
@@ -118,7 +118,7 @@ discard block |
||
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 |
||
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)'; |