| Conditions | 2 |
| Paths | 2 |
| Total Lines | 16 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 67 | public function getAppValue($type) { |
||
| 68 | $value = $this->config->getAppValue('facerecognition', $type); |
||
| 69 | if ($value !== '') { |
||
| 70 | $result = [ |
||
| 71 | 'status' => 'success', |
||
| 72 | 'value' => $value |
||
| 73 | ]; |
||
| 74 | } else { |
||
| 75 | $result = [ |
||
| 76 | 'status' => 'false', |
||
| 77 | 'value' =>'nodata' |
||
| 78 | ]; |
||
| 79 | } |
||
| 80 | $response = new JSONResponse(); |
||
| 81 | $response->setData($result); |
||
| 82 | return $response; |
||
| 83 | } |
||
| 86 |