| Conditions | 4 |
| Paths | 4 |
| Total Lines | 18 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 86 | 5 | protected function getRequiredFields($buildType = self::BUILD_FOR_CREATE) |
|
| 87 | { |
||
| 88 | switch ($buildType) { |
||
| 89 | 5 | case self::BUILD_FOR_CREATE: |
|
| 90 | return [ |
||
| 91 | 3 | 'team_id', |
|
| 92 | 'name', |
||
| 93 | 'display_name', |
||
| 94 | 'type', |
||
| 95 | ]; |
||
| 96 | |||
| 97 | 2 | case self::BUILD_FOR_PATCH: |
|
| 98 | 1 | return ['id']; |
|
| 99 | 1 | case self::BUILD_FOR_UPDATE: |
|
| 100 | default: |
||
| 101 | 1 | return []; |
|
| 102 | } |
||
| 103 | } |
||
| 104 | } |
||
| 105 |