Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
23 | class Journal extends Identity implements FetchableInterface |
||
24 | { |
||
25 | public const ENTITY_NAME = "journal"; |
||
26 | |||
27 | protected User $user; |
||
28 | protected string $notes; |
||
29 | protected bool $private_notes; |
||
30 | |||
31 | protected array $details; |
||
32 | |||
33 | public static function getRepositoryClass(): ?string |
||
38 |