Completed
Pull Request — master (#4)
by Jacob
02:59
created
Plugins/PluginInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
      * Handles modification (filtering) of the response as needed.
25 25
      * Called by As3\PostProcessBundle\Task\TaskManager::filterResponse() before returning the response.
26 26
      *
27
-     * @param   Response            $event  The Symfony Response
28 27
      */
29 28
     public function filterResponse(Response $response);
30 29
 }
Please login to merge, or discard this patch.
Task/TaskManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
         ];
66 66
         $this->tasks[get_class($task)] = $prioritized;
67 67
 
68
-        $sortFunc = function ($a, $b) {
68
+        $sortFunc = function($a, $b) {
69 69
             return $a['priority'] > $b['priority'] ? -1 : 1;
70 70
         };
71 71
         uasort($this->tasks, $sortFunc);
Please login to merge, or discard this patch.