Test Failed
Push — master ( 65271b...03c359 )
by butschster
21:29 queued 13:15
created
src/SendIt/src/TransportResolver.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,10 @@
 block discarded – undo
27 27
     public function resolve(string $dsn): TransportInterface
28 28
     {
29 29
         $dsnDto = Dsn::fromString($dsn);
30
-        foreach ($this->transports as $transport) {
31
-            if ($transport->supports($dsnDto)) {
30
+        foreach ($this->transports as $transport)
31
+        {
32
+            if ($transport->supports($dsnDto))
33
+            {
32 34
                 return $transport->create($dsnDto);
33 35
             }
34 36
         }
Please login to merge, or discard this patch.