Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
75 | public function __construct(string $id, string $title, string $content, \DateTime $created, \DateTime $updated, |
||
76 | bool $draft, string $template) |
||
77 | { |
||
78 | $this->id = $id; |
||
79 | $this->title = $title; |
||
80 | $this->content = $content; |
||
81 | $this->created = $created; |
||
82 | $this->updated = $updated; |
||
83 | $this->draft = $draft; |
||
84 | $this->template = $template; |
||
85 | } |
||
86 | |||
165 |