Conditions | 4 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
94 | 5 | protected function getRequiredFields($buildType = self::BUILD_FOR_CREATE) |
|
95 | { |
||
96 | switch ($buildType) { |
||
97 | 5 | case self::BUILD_FOR_CREATE: |
|
98 | 3 | return ['username', 'email', 'password']; |
|
99 | 2 | case self::BUILD_FOR_UPDATE: |
|
100 | 1 | return ['id']; |
|
101 | 1 | case self::BUILD_FOR_PATCH: |
|
102 | default: |
||
103 | 1 | return []; |
|
104 | } |
||
105 | } |
||
106 | } |
||
107 |