Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class PartBuilderFactory |
||
20 | { |
||
21 | /** |
||
22 | * Constructs a top-level (message) PartBuilder object and returns it. |
||
23 | */ |
||
24 | 108 | public function newPartBuilder(PartHeaderContainer $headerContainer, StreamInterface $messageStream) : PartBuilder |
|
27 | } |
||
28 | |||
29 | /** |
||
30 | * Constructs a child PartBuilder object with the passed $parent as its |
||
31 | * parent, and returns it. |
||
32 | */ |
||
33 | 75 | public function newChildPartBuilder(PartHeaderContainer $headerContainer, ParserPartProxy $parent) : PartBuilder |
|
42 |