| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 8 | public function __construct( |
|
| 23 | UrlInterface $link, |
||
| 24 | Author $author, |
||
| 25 | Description $description, |
||
| 26 | Title $title, |
||
| 27 | PointInTimeInterface $publicationDate |
||
| 28 | ) { |
||
| 29 | 8 | $this->link = $link; |
|
| 30 | 8 | $this->author = $author; |
|
| 31 | 8 | $this->description = $description; |
|
| 32 | 8 | $this->title = $title; |
|
| 33 | 8 | $this->publicationDate = $publicationDate; |
|
| 34 | 8 | } |
|
| 61 |