Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | class IssueCategory extends NamedIdentity implements FetchableInterface, MutableInterface |
||
23 | { |
||
24 | public const ENTITY_NAME = "issue_category"; |
||
25 | |||
26 | protected static array $payload_mutations = [ |
||
27 | "assigned_to" => "assigned_to_id", |
||
28 | "reassign_to" => "reassign_to_id" |
||
29 | ]; |
||
30 | |||
31 | protected Project $project; |
||
32 | protected ?User $assigned_to; |
||
33 | protected ?User $reassign_to; |
||
34 | |||
35 | public function getMutations(): array |
||
43 |