Completed
Branch master (ffe81d)
by Neomerx
04:33
created
src/Http/Headers/MediaType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     public function getMediaType(): string
98 98
     {
99 99
         if ($this->mediaType === null) {
100
-            $this->mediaType = $this->getType() . '/' . $this->getSubType();
100
+            $this->mediaType = $this->getType().'/'.$this->getSubType();
101 101
         }
102 102
 
103 103
         return $this->mediaType;
Please login to merge, or discard this patch.
src/Http/BaseResponses.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
     {
169 169
         $resSubUrl = $this->getSchemaContainer()->getSchema($resource)->getSelfSubLink($resource)->getSubHref();
170 170
         $urlPrefix = $this->getUrlPrefix();
171
-        $location  = $urlPrefix . $resSubUrl;
171
+        $location  = $urlPrefix.$resSubUrl;
172 172
 
173 173
         return $location;
174 174
     }
Please login to merge, or discard this patch.