Total Complexity | 9 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 83.33% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | trait InteractsWithTitle |
||
10 | { |
||
11 | private readonly SimpleXMLElement $opfXml; |
||
12 | private readonly string $dcNamespace; |
||
13 | |||
14 | /** |
||
15 | * Gets the title of the EPUB. |
||
16 | */ |
||
17 | 9 | public function getTitle(): string |
|
28 | } |
||
29 | |||
30 | /** |
||
31 | * Sets the title of the EPUB. |
||
32 | */ |
||
33 | 1 | public function setTitle(string $title): void |
|
47 |