Skip to content

Commit bd7c05e

Browse files
committed
Allow MultipartStreamBuilder subclass to manipulate data
* Change property $data visibility from "private" to "protected". Leaving more flexibilities for subclassing.
1 parent 121299c commit bd7c05e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MultipartStreamBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class MultipartStreamBuilder
3636
/**
3737
* @var array Element where each Element is an array with keys ['contents', 'headers', 'filename']
3838
*/
39-
private $data = [];
39+
protected $data = [];
4040

4141
/**
4242
* @param HttplugStreamFactory|StreamFactoryInterface|null $streamFactory

0 commit comments

Comments
 (0)