| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class ParserPartStreamContainerFactory |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var StreamFactory |
||
| 21 | */ |
||
| 22 | protected $streamFactory; |
||
| 23 | |||
| 24 | 1 | public function __construct(StreamFactory $streamFactory) |
|
| 25 | { |
||
| 26 | 1 | $this->streamFactory = $streamFactory; |
|
| 27 | 1 | } |
|
| 28 | |||
| 29 | 104 | public function newInstance(ParserPartProxy $parserProxy) { |
|
| 31 | } |
||
| 32 | } |
||
| 33 |