| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function export($value, int $indentationLevel = 0) : string |
||
| 22 | { |
||
| 23 | /** @var CacheMetadata $value */ |
||
| 24 | $indentation = str_repeat(self::INDENTATION, $indentationLevel); |
||
| 25 | $objectReference = $indentation . self::VARIABLE; |
||
| 26 | $lines = []; |
||
| 27 | |||
| 28 | $lines[] = $objectReference . ' = ' . $this->exportInstantiation($value); |
||
| 29 | |||
| 30 | return implode(PHP_EOL, $lines); |
||
| 31 | } |
||
| 42 |