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 11# Change Log
22
3+ ## 0.1.5 - 2017-02-16
4+
5+ ### Fixed
6+
7+ - Performance improvements by avoid using ` uniqid() ` .
8+
39## 0.1.5 - 2017-02-14
410
511### Fixed
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public function build()
9191 $ streams = '' ;
9292 foreach ($ this ->data as $ data ) {
9393 // Add start and headers
94- $ streams .= "-- \" {$ this ->getBoundary ()}\" \r\n" .
94+ $ streams .= "-- {$ this ->getBoundary ()}\r\n" .
9595 $ this ->getHeaders ($ data ['headers ' ])."\r\n" ;
9696
9797 // Convert the stream to string
@@ -107,7 +107,7 @@ public function build()
107107 }
108108
109109 // Append end
110- $ streams .= "-- \" {$ this ->getBoundary ()}\" -- \r\n" ;
110+ $ streams .= "-- {$ this ->getBoundary ()}-- \r\n" ;
111111
112112 return $ this ->streamFactory ->createStream ($ streams );
113113 }
You can’t perform that action at this time.
0 commit comments