Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1.0028 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | 5 | public function __construct(SiteLink $siteLink, $headerText, $languageCode, $url, MediawikiArticleImage $image = null) { |
|
42 | 5 | $this->siteLink = $siteLink; |
|
43 | 5 | $this->headerText = $headerText; |
|
44 | 5 | $this->languageCode = $languageCode; |
|
45 | 5 | $this->url = $url; |
|
46 | 5 | $this->image = $image; |
|
47 | } |
||
48 | |||
84 |