Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
16 | public function hash(): string |
||
17 | { |
||
18 | if ($this->value instanceof Hashable) { |
||
19 | return $this->doHash(gettype($this->value) . get_class($this->value) . $this->value->hash()); |
||
20 | } |
||
21 | |||
22 | return $this->doHash(gettype($this->value) . get_class($this->value) . \spl_object_hash($this->value)); |
||
23 | } |
||
24 | |||
33 |