Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | abstract class IMessagePartFactory |
||
17 | { |
||
18 | /** |
||
19 | * @var StreamFactory |
||
20 | */ |
||
21 | protected $streamFactory; |
||
22 | |||
23 | /** |
||
24 | * @var PartStreamContainerFactory |
||
25 | */ |
||
26 | protected $partStreamContainerFactory; |
||
27 | |||
28 | public function __construct( |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Constructs a new IMessagePart object and returns it |
||
38 | * |
||
39 | * @return \ZBateson\MailMimeParser\Message\IMessagePart |
||
40 | */ |
||
41 | public abstract function newInstance(); |
||
|
|||
42 | } |
||
43 |