Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
25 | class Role extends NamedIdentity |
||
26 | { |
||
27 | public const ENTITY_NAME = "role"; |
||
28 | |||
29 | protected bool $assignable; |
||
30 | protected string $issues_visibility; |
||
31 | protected string $time_entries_visibility; |
||
32 | protected string $users_visibility; |
||
33 | protected ?ArrayCollection $permissions; |
||
34 | |||
35 | public static function getRepositoryClass(): ?string |
||
40 |