|
Code Coverage |
|
Lines |
Functions and Methods |
Classes and Traits |
Total |
|
n/a |
0 / 0 |
|
n/a |
0 / 0 |
CRAP |
|
n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace PhpOffice\PhpWord\Writer; |
4 | |
5 | interface WriterPartInterface |
6 | { |
7 | public function setParentWriter(AbstractWriter $parentWriter): void; |
8 | |
9 | public function write(): string; |
10 | } |