We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6fd504e + 29e5008 commit d98c876Copy full SHA for d98c876
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Change Log
2
3
+## 0.1.5 - 2017-02-16
4
+
5
+### Fixed
6
7
+- Performance improvements by avoid using `uniqid()`.
8
9
## 0.1.5 - 2017-02-14
10
11
### Fixed
src/MultipartStreamBuilder.php
@@ -91,7 +91,7 @@ public function build()
91
$streams = '';
92
foreach ($this->data as $data) {
93
// Add start and headers
94
- $streams .= "--\"{$this->getBoundary()}\"\r\n".
+ $streams .= "--{$this->getBoundary()}\r\n".
95
$this->getHeaders($data['headers'])."\r\n";
96
97
// Convert the stream to string
@@ -107,7 +107,7 @@ public function build()
107
}
108
109
// Append end
110
- $streams .= "--\"{$this->getBoundary()}\"--\r\n";
+ $streams .= "--{$this->getBoundary()}--\r\n";
111
112
return $this->streamFactory->createStream($streams);
113
0 commit comments