File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 0.1.5 - 2017-02-16
4
+
5
+ ### Fixed
6
+
7
+ - Performance improvements by avoid using ` uniqid() ` .
8
+
3
9
## 0.1.5 - 2017-02-14
4
10
5
11
### Fixed
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public function build()
91
91
$ streams = '' ;
92
92
foreach ($ this ->data as $ data ) {
93
93
// Add start and headers
94
- $ streams .= "-- \" {$ this ->getBoundary ()}\" \r\n" .
94
+ $ streams .= "-- {$ this ->getBoundary ()}\r\n" .
95
95
$ this ->getHeaders ($ data ['headers ' ])."\r\n" ;
96
96
97
97
// Convert the stream to string
@@ -107,7 +107,7 @@ public function build()
107
107
}
108
108
109
109
// Append end
110
- $ streams .= "-- \" {$ this ->getBoundary ()}\" -- \r\n" ;
110
+ $ streams .= "-- {$ this ->getBoundary ()}-- \r\n" ;
111
111
112
112
return $ this ->streamFactory ->createStream ($ streams );
113
113
}
You can’t perform that action at this time.
0 commit comments