| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 2 | public function __construct( |
|
| 31 | LoggerInterface $logger, |
||
| 32 | StreamFactory $streamFactory, |
||
| 33 | MbWrapper $mbWrapper, |
||
| 34 | bool $throwExceptionReadingPartContentFromUnsupportedCharsets |
||
| 35 | ) { |
||
| 36 | 2 | $this->logger = $logger; |
|
| 37 | 2 | $this->streamFactory = $streamFactory; |
|
| 38 | 2 | $this->mbWrapper = $mbWrapper; |
|
| 39 | 2 | $this->throwExceptionReadingPartContentFromUnsupportedCharsets = $throwExceptionReadingPartContentFromUnsupportedCharsets; |
|
| 40 | } |
||
| 53 |