| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class StdClassObject extends ObjectValue |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * {@inheritdoc} |
||
| 16 | */ |
||
| 17 | 1 | public function hash(): string |
|
| 18 | { |
||
| 19 | 1 | throw new BadMethodCallException('Unable to hash this class.'); |
|
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | 1 | public function serialize() |
|
| 26 | { |
||
| 27 | 1 | throw new BadMethodCallException('Unable to serialize this class.'); |
|
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | 1 | public function unserialize($serialized) |
|
| 36 | } |
||
| 37 | } |
||
| 38 |