Completed
Push — master ( f5ce61...9abbfe )
by Phil
03:10
created
Controller/DefaultController.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     {
150 150
         $count = $this->getResque()->retryFailedJobs();
151 151
 
152
-        $this->addFlash('info', 'Retry '.$count.' failed jobs.');
152
+        $this->addFlash('info', 'Retry ' . $count . ' failed jobs.');
153 153
 
154 154
         return $this->redirectToRoute('ResqueBundle_homepage');
155 155
     }
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
     {
162 162
         $count = $this->getResque()->clearFailedJobs();
163 163
 
164
-        $this->addFlash('info', 'Clear '.$count.' failed jobs.');
164
+        $this->addFlash('info', 'Clear ' . $count . ' failed jobs.');
165 165
 
166 166
         return $this->redirectToRoute('ResqueBundle_homepage');
167 167
     }
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @return RedirectResponse
171
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
172 172
      */
173 173
     public function retryFailedAction()
174 174
     {
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     }
181 181
 
182 182
     /**
183
-     * @return RedirectResponse
183
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
184 184
      */
185 185
     public function clearFailedAction()
186 186
     {
Please login to merge, or discard this patch.