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