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