| 1 | <?php |
||
| 13 | abstract class ObjectValue extends AbstractValue implements ObjectValueInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | 2 | public function equals(ValueInterface $item, $strict = true): bool |
|
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function class(): string |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 5 | public function type(): string |
|
| 38 | } |
||
| 39 |