@@ -257,11 +257,11 @@ |
||
257 | 257 | $key = substr($parts['path'], 1); |
258 | 258 | |
259 | 259 | if (null !== $parts['query']) { |
260 | - $key .= '?' . $parts['query']; |
|
260 | + $key .= '?'.$parts['query']; |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | if (null !== $parts['fragment']) { |
264 | - $key .= '#' . $parts['fragment']; |
|
264 | + $key .= '#'.$parts['fragment']; |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | if (empty($domain) || empty($key)) { |
@@ -89,7 +89,7 @@ |
||
89 | 89 | } else { |
90 | 90 | $before = substr($this->content, 0, $this->position); |
91 | 91 | $after = $newNumBytes > $newPosition ? substr($this->content, $newPosition) : ''; |
92 | - $this->content = $before . $data . $after; |
|
92 | + $this->content = $before.$data.$after; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | $this->position = $newPosition; |