Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class PartBuilderFactory |
||
19 | { |
||
20 | /** |
||
21 | * Constructs a new PartBuilder object and returns it |
||
22 | * |
||
23 | * @param StreamInterface $messageStream |
||
24 | * @return PartBuilder |
||
25 | */ |
||
26 | public function newPartBuilder(PartHeaderContainer $headerContainer, StreamInterface $messageStream) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Constructs a new PartBuilder object and returns it |
||
33 | * |
||
34 | * @param ParserPartProxy $parent |
||
35 | * @return PartBuilder |
||
36 | */ |
||
37 | public function newChildPartBuilder(PartHeaderContainer $headerContainer, ParserPartProxy $parent) |
||
46 |