| Conditions | 1 |
| Paths | 1 |
| Total Lines | 23 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | protected function getDataArray() |
||
| 13 | { |
||
| 14 | return [ |
||
| 15 | 'settings' => [ |
||
| 16 | 'setting' => [ |
||
| 17 | [ |
||
| 18 | '_id' => '1', |
||
| 19 | 'name' => 'foo', |
||
| 20 | 'profile' => ['not-profile'], |
||
| 21 | 'value' => true, |
||
| 22 | 'type' => 'bool', |
||
| 23 | ], |
||
| 24 | [ |
||
| 25 | '_id' => '2', |
||
| 26 | 'name' => 'bar', |
||
| 27 | 'profile' => ['profile'], |
||
| 28 | 'value' => true, |
||
| 29 | 'type' => 'bool', |
||
| 30 | ], |
||
| 31 | ] |
||
| 32 | ] |
||
| 33 | ]; |
||
| 34 | } |
||
| 35 | |||
| 66 |