Test Setup Failed
Pull Request — master (#3)
by Sebastien
03:11
created
src/Message.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,5 +3,5 @@
 block discarded – undo
3 3
 
4 4
 class Message implements MessageInterface
5 5
 {
6
-   use MessageTrait;
6
+    use MessageTrait;
7 7
 }
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
src/MessageTrait.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -57,12 +57,12 @@
 block discarded – undo
57 57
         return $this->withRecipients([$email => $name]);
58 58
     }
59 59
 
60
-   public function withRecipients(array $recipients)
61
-   {
62
-       $new = clone $this;
63
-       $new->recipients = $recipients;
64
-       return $new;
65
-   }
60
+    public function withRecipients(array $recipients)
61
+    {
62
+        $new = clone $this;
63
+        $new->recipients = $recipients;
64
+        return $new;
65
+    }
66 66
 
67 67
     public function withAddedRecipient($email, $name = null)
68 68
     {
Please login to merge, or discard this patch.