| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2.0116 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 72 | public function original(): Str |
|
| 29 | { |
||
| 30 | 72 | return $this->original; |
|
| 31 | } |
||
| 32 | |||
| 33 | 96 | public function __toString(): string |
|
| 34 | { |
||
| 35 | 96 | return $this->value ?? $this->value = new UnsignedOctet( |
|
| 36 | 96 | new Integer($this->original->toEncoding('ASCII')->length()) |
|
| 37 | 96 | ).$this->original; |
|
| 38 | } |
||
| 39 | } |
||
| 40 |