| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 2 | public function loadEntries(string $inputType): void |
|
| 28 | { |
||
| 29 | 2 | $result = []; |
|
| 30 | 2 | foreach ($this->inputs as $postedKey => &$posted) { |
|
| 31 | 2 | $result[$this->removeNullBytes(strval($postedKey))] = $this->removeNullBytes(strval($posted)); |
|
| 32 | } |
||
| 33 | 2 | $this->vars = $result; |
|
| 34 | 2 | $this->inputType = $inputType; |
|
| 35 | 2 | } |
|
| 42 |