Completed
Push — master ( 41e5ad...f2b4de )
by Alexandre
02:39
created
src/AppBundle/Service/Notification.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@  discard block
 block discarded – undo
40 40
         );
41 41
     }
42 42
 
43
+    /**
44
+     * @param string $template
45
+     */
43 46
     private function sendMail($recipient, $template, array $parameters = array())
44 47
     {
45 48
         $message = $this->getMessage($template, $parameters);
@@ -47,6 +50,9 @@  discard block
 block discarded – undo
47 50
         $this->mailer->send($message);
48 51
     }
49 52
 
53
+    /**
54
+     * @return \Swift_Mime_Message
55
+     */
50 56
     public function getMessage($template, $parameters = array())
51 57
     {
52 58
         $template = $this->twig->loadTemplate($template);
Please login to merge, or discard this patch.