| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function addManipulation(string $operation, string $argument) |
||
| 23 | { |
||
| 24 | if ($this->openNewSet) { |
||
| 25 | $this->manipulationSets[] = []; |
||
| 26 | } |
||
| 27 | |||
| 28 | $lastIndex = count($this->manipulationSets) - 1; |
||
| 29 | |||
| 30 | $this->manipulationSets[$lastIndex][$operation] = $argument; |
||
| 31 | |||
| 32 | $this->openNewSet = false; |
||
| 33 | |||
| 34 | return $this; |
||
| 35 | } |
||
| 36 | |||
| 77 | } |