Completed
Push — master ( dbcc11...1c506f )
by Alexandre
03:04 queued 23s
created
src/AppBundle/Cart/Cart.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -61,6 +61,9 @@
 block discarded – undo
61 61
         $this->addRow($row);
62 62
     }
63 63
 
64
+    /**
65
+     * @param integer $quantity
66
+     */
64 67
     public function setMeal(Meal $meal, $quantity)
65 68
     {
66 69
         if ($quantity == 0) {
Please login to merge, or discard this patch.
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.
web/config.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -167,7 +167,10 @@  discard block
 block discarded – undo
167 167
                         <?php if (count($minorProblems)): ?>
168 168
                             <h2>Recommendations</h2>
169 169
                             <p>
170
-                                <?php if (count($majorProblems)): ?>Additionally, to<?php else: ?>To<?php endif; ?> enhance your Symfony experience,
170
+                                <?php if (count($majorProblems)): ?>Additionally, to<?php else {
171
+    : ?>To<?php endif;
172
+}
173
+?> enhance your Symfony experience,
171 174
                                 it’s recommended that you fix the following:
172 175
                             </p>
173 176
                             <ol>
@@ -181,9 +184,12 @@  discard block
 block discarded – undo
181 184
                             <p id="phpini">*
182 185
                                 <?php if ($symfonyRequirements->getPhpIniConfigPath()): ?>
183 186
                                     Changes to the <strong>php.ini</strong> file must be done in "<strong><?php echo $symfonyRequirements->getPhpIniConfigPath() ?></strong>".
184
-                                <?php else: ?>
187
+                                <?php else {
188
+    : ?>
185 189
                                     To change settings, create a "<strong>php.ini</strong>".
186
-                                <?php endif; ?>
190
+                                <?php endif;
191
+}
192
+?>
187 193
                             </p>
188 194
                         <?php endif; ?>
189 195
 
Please login to merge, or discard this patch.