| Conditions | 4 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | 8 | public function get() |
|
| 54 | { |
||
| 55 | 8 | if (in_array($this->id, [Status::SUCCESS, Status::FAILED]) && $this->name) { |
|
| 56 | 1 | return [$this->id => ['name' => $this->name]]; |
|
| 57 | } |
||
| 58 | 7 | $values = $this->getExistedValues($this->fieldList); |
|
| 59 | |||
| 60 | 7 | if ($this->id) { |
|
| 61 | 1 | return [$this->id => $values]; |
|
| 62 | } |
||
| 63 | |||
| 64 | 6 | return $values; |
|
| 65 | } |
||
| 66 | } |