Completed
Push — master ( df9f00...ccd20f )
by dan
01:37
created
Dispatcher/DatabaseMessageDispatcher.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
         return false;
39 39
     }
40 40
 
41
+    /**
42
+     * @param MessageInterface $data
43
+     */
41 44
     protected function createDatabaseNotificationEntity($data)
42 45
     {
43 46
         if ($this->accessor === null) {
Please login to merge, or discard this patch.
Dispatcher/MailMessageDispatcher.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
 
23 23
 
24 24
         $mail = \Swift_Message::newInstance()
25
-                              ->setSubject($message->getSubject())
26
-                              ->setBody($message->getBody());
25
+                                ->setSubject($message->getSubject())
26
+                                ->setBody($message->getBody());
27 27
 
28 28
         $mail->setFrom($message->getFrom());
29 29
         $mail->setTo($message->getTo());
Please login to merge, or discard this patch.