| 1 | <?php | ||
| 14 | abstract class ObjectValue extends AbstractValue implements ObjectValueInterface | ||
| 15 | { | ||
| 16 | /** | ||
| 17 |      * {@inheritdoc} | ||
| 18 | */ | ||
| 19 | public function hash(): string | ||
| 27 | |||
| 28 | /** | ||
| 29 |      * {@inheritdoc} | ||
| 30 | */ | ||
| 31 | 2 | public function equals(ValueInterface $item, $strict = true): bool | |
| 35 | |||
| 36 | /** | ||
| 37 |      * {@inheritdoc} | ||
| 38 | */ | ||
| 39 | public function class(): string | ||
| 43 | |||
| 44 | /** | ||
| 45 |      * {@inheritdoc} | ||
| 46 | */ | ||
| 47 | 5 | public function type(): string | |
| 51 | } | ||
| 52 |