| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | class News extends Identity implements FetchableInterface, MutableInterface |
||
| 26 | { |
||
| 27 | public const ENTITY_NAME = "news"; |
||
| 28 | |||
| 29 | protected string $title; |
||
| 30 | protected ?string $summary; |
||
| 31 | protected string $description; |
||
| 32 | |||
| 33 | protected Project $project; |
||
| 34 | protected User $author; |
||
| 35 | |||
| 36 | protected CarbonImmutable $created_on; |
||
| 37 | |||
| 38 | public function getMutations(): array |
||
| 45 |