| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | 2 | public function save() : MapperEntity |
|
| 22 | { |
||
| 23 | 2 | if (!$this->id) { |
|
| 24 | 2 | $max = 0; |
|
| 25 | 2 | if (count($this->_test->data[$this->_key])) { |
|
| 26 | 2 | $max = max(array_keys($this->_test->data[$this->_key])); |
|
| 27 | } |
||
| 28 | 2 | $this->id = $max + 1; |
|
| 29 | } |
||
| 30 | 2 | $this->_test->data[$this->_key][$this->id] = $this; |
|
| 31 | 2 | return $this; |
|
| 32 | } |
||
| 33 | |||
| 42 |