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