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