| Conditions | 4 |
| Paths | 3 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 4 | public function lastKey() |
|
| 19 | { |
||
| 20 | 4 | $after = $this->last(); |
|
| 21 | |||
| 22 | 4 | if (empty($after)) { |
|
| 23 | 4 | return null; |
|
| 24 | } |
||
| 25 | |||
| 26 | 4 | $afterKey = $after->getKeys(); |
|
| 27 | |||
| 28 | 4 | $conditionIndexes = $this->conditionIndexes ?: []; |
|
| 29 | |||
| 30 | 4 | foreach ($conditionIndexes as $index) { |
|
| 31 | 1 | $afterKey[$index] = $after->getAttribute($index); |
|
| 32 | } |
||
| 33 | |||
| 34 | 4 | return $afterKey; |
|
| 35 | } |
||
| 37 |