| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function addManipulation($operation, $arguments) |
||
| 15 | { |
||
| 16 | if ($this->openNewSet) { |
||
| 17 | $this->manipulationSets[] = []; |
||
| 18 | } |
||
| 19 | |||
| 20 | $lastIndex = count($this->manipulationSets) - 1; |
||
| 21 | |||
| 22 | $this->manipulationSets[$lastIndex][$operation] = $arguments; |
||
| 23 | |||
| 24 | $this->openNewSet = false; |
||
| 25 | } |
||
| 26 | |||
| 41 | } |