Total Complexity | 5 |
Total Lines | 50 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Credit extends base\Credit implements Contract |
||
12 | { |
||
13 | use ContractTrait { |
||
14 | getLinks as getContractLinks; |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * @inheritdoc |
||
19 | */ |
||
20 | protected function assignmentClass(): string |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @inheritdoc |
||
27 | */ |
||
28 | protected function workLogClass(): string |
||
29 | { |
||
30 | return CreditWorkLog::class; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | protected function slugBehaviorConfig(): array |
||
40 | ]; |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @inheritdoc |
||
45 | */ |
||
46 | public function getLinks() |
||
50 | ]); |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * @inheritdoc |
||
55 | */ |
||
56 | public function extraFields() |
||
61 | ]; |
||
62 | } |
||
64 |