| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | private function __construct( |
||
| 53 | string $id, |
||
| 54 | string $title, |
||
| 55 | string $slug, |
||
| 56 | string $summary, |
||
| 57 | string $content, |
||
| 58 | DateTimeInterface $publishedAt |
||
| 59 | ) { |
||
| 60 | $this->id = $id; |
||
| 61 | $this->title = $title; |
||
| 62 | $this->slug = $slug; |
||
| 63 | $this->summary = $summary; |
||
| 64 | $this->content = $content; |
||
| 65 | $this->publishedAt = $publishedAt; |
||
| 66 | } |
||
| 67 | |||
| 110 |