| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function dump() |
||
| 24 | { |
||
| 25 | $value = $this->getResult(); |
||
| 26 | foreach (array_reverse($this->getTransformers()) as $transformer) { |
||
| 27 | $value = $transformer->reverse($value); |
||
| 28 | } |
||
| 29 | |||
| 30 | $this->getStream()->write(['tag' => $this->getName(), 'value' => $value]); |
||
| 31 | |||
| 32 | return $this; |
||
| 33 | } |
||
| 34 | |||
| 39 |