| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 58 | public function __construct( |
||
| 59 | string $title, |
||
| 60 | DateTimeInterface $publishedAt, |
||
| 61 | string $summary, |
||
| 62 | string $slug, |
||
| 63 | string $fullName |
||
| 64 | ) { |
||
| 65 | $this->title = $title; |
||
| 66 | $this->publishedAt = $publishedAt; |
||
| 67 | $this->summary = $summary; |
||
| 68 | $this->slug = $slug; |
||
| 69 | $this->fullName = $fullName; |
||
| 70 | } |
||
| 71 | |||
| 97 |