Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
40 | 2 | private function newContainerSemanticData( TitleValue $subjectPage ): ContainerSemanticData { |
|
41 | 2 | return new ContainerSemanticData( |
|
42 | 2 | new DIWikiPage( |
|
43 | 2 | $subjectPage->getDBkey(), |
|
44 | 2 | $subjectPage->getNamespace(), |
|
45 | 2 | $subjectPage->getInterwiki(), |
|
46 | 2 | $this->name |
|
47 | ) |
||
48 | ); |
||
49 | } |
||
50 | |||
60 |