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