Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
114 | public function jsonSerialize() |
||
115 | { |
||
116 | return [ |
||
117 | 'id' => $this->getId() === null ?: $this->getId()->getValue(), |
||
118 | 'user_id' => $this->userId->getValue(), |
||
119 | 'category_id' => $this->categoryId->getValue(), |
||
120 | 'title' => $this->title, |
||
121 | 'content' => $this->content |
||
122 | ]; |
||
123 | } |
||
124 | |||
143 | } |