Passed
Push — main ( 9116b3...d79e5f )
by Dimitri
09:50 queued 04:37
created
src/Mail/Mailable.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     public function send(Mail $mail): bool
194 194
     {
195 195
         foreach ($this->bcc() as $key => $value) {
196
-            if (empty($value) || ! is_string($value)) {
196
+            if (empty($value) || !is_string($value)) {
197 197
                 continue;
198 198
             }
199 199
 
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
         }
206 206
 
207 207
         foreach ($this->cc() as $key => $value) {
208
-            if (empty($value) || ! is_string($value)) {
208
+            if (empty($value) || !is_string($value)) {
209 209
                 continue;
210 210
             }
211 211
 
@@ -218,12 +218,12 @@  discard block
 block discarded – undo
218 218
 
219 219
         $content = $this->content();
220 220
 
221
-        if (! empty($content['view'])) {
221
+        if (!empty($content['view'])) {
222 222
             $mail->view($content['view'], $this->data());
223
-        } elseif (! empty($content['html'])) {
223
+        } elseif (!empty($content['html'])) {
224 224
             $mail->html($content['html']);
225 225
         }
226
-        if (! empty($content['text'])) {
226
+        if (!empty($content['text'])) {
227 227
             $mail->text($content['text']);
228 228
         }
229 229
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
         $mail->priority($this->priority());
233 233
 
234 234
         foreach ($this->replyTo() as $key => $value) {
235
-            if (empty($value) || ! is_string($value)) {
235
+            if (empty($value) || !is_string($value)) {
236 236
                 continue;
237 237
             }
238 238
 
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         $mail->subject($this->subject());
247 247
 
248 248
         foreach ($this->to() as $key => $value) {
249
-            if (empty($value) || ! is_string($value)) {
249
+            if (empty($value) || !is_string($value)) {
250 250
                 continue;
251 251
             }
252 252
 
Please login to merge, or discard this patch.