Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | trait ObjectHashingTrait |
||
23 | { |
||
24 | /** |
||
25 | * Calculates a hash value for the serialized value of the given object. |
||
26 | * |
||
27 | * @param object|\stdClass $object The full path and name of the file for hashing. |
||
28 | * |
||
29 | * @return string The digest. |
||
30 | * @throws \Exception Validation errors. |
||
31 | */ |
||
32 | 88 | public function hashObject($object) |
|
43 |