| Conditions | 3 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 7 |
| 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 | if (null !== $value) { |
||
| 31 | $this->getStream()->write(['tag' => $this->getName(), 'value' => $value]); |
||
| 32 | } |
||
| 33 | |||
| 34 | return $this; |
||
| 35 | } |
||
| 36 | |||
| 41 |