Completed
Push — master ( b5ddfb...0e1418 )
by
unknown
11s
created
src/Tools/ResponseStrategies/ResponseFileStrategy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     protected function getFileResponses(array $tags)
34 34
     {
35
-        $responseFileTags = array_filter($tags, function ($tag) {
35
+        $responseFileTags = array_filter($tags, function($tag) {
36 36
             return $tag instanceof Tag && strtolower($tag->getName()) === 'responsefile';
37 37
         });
38 38
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             return;
41 41
         }
42 42
 
43
-        return array_map(function (Tag $responseFileTag) {
43
+        return array_map(function(Tag $responseFileTag) {
44 44
             preg_match('/^(\d{3})?\s?([\s\S]*)$/', $responseFileTag->getContent(), $result);
45 45
 
46 46
             $status = $result[1] ?: 200;
Please login to merge, or discard this patch.