| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3.0261 |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | 2 | protected function buildBody() |
|
| 45 | { |
||
| 46 | 2 | $body = null; |
|
| 47 | 2 | if ($this->profileSettings instanceof ProfileSettings) { |
|
| 48 | 1 | $body = $this->profileSettings; |
|
| 49 | 1 | } elseif (\is_array($this->profileSettings)) { |
|
| 50 | $body = [ |
||
| 51 | 'fields' => $this->profileSettings, |
||
| 52 | ]; |
||
| 53 | } |
||
| 54 | |||
| 55 | 2 | return $body; |
|
| 56 | } |
||
| 74 |