Completed
Pull Request — master (#13)
by Alexandre
13:17 queued 11:14
created
src/AppBundle/Service/Sms.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         ;
32 32
 
33 33
         $handle = curl_init($url);
34
-        curl_setopt($handle,  CURLOPT_RETURNTRANSFER, TRUE);
34
+        curl_setopt($handle, CURLOPT_RETURNTRANSFER, TRUE);
35 35
         $content = curl_exec($handle);
36 36
         $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);
37 37
         curl_close($handle);
Please login to merge, or discard this patch.
src/AppBundle/Service/Notification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
 
74 74
         $parameters = array_merge($this->twig->getGlobals(), $parameters);
75 75
 
76
-        $subject  = $template->renderBlock('subject',   $parameters);
76
+        $subject  = $template->renderBlock('subject', $parameters);
77 77
         $bodyHtml = $template->renderBlock('body_html', $parameters);
78 78
         $bodyText = $template->renderBlock('body_text', $parameters);
79 79
 
Please login to merge, or discard this patch.