Completed
Push — master ( 005b00...a8a0a1 )
by John
01:59
created
src/Request/BodyParser/BodyParserFactory/RegisteredBodyParserFactory.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      * @throws UnknownContentTypeException
39 39
      */
40 40
     public function create(string $contentType): BodyParser {
41
-        if(isset($this->contentTypeToParserMap[strtolower($contentType)])){
41
+        if(isset($this->contentTypeToParserMap[strtolower($contentType)])) {
42 42
             return $this->contentTypeToParserMap[strtolower($contentType)];
43 43
         }
44 44
 
Please login to merge, or discard this patch.