types icon indicating copy to clipboard operation
types copied to clipboard

Missing JsonSerializable interface

Open asgraf opened this issue 11 months ago • 3 comments

What i did:

$data = [
    'quantity' => Quantity::from(5)
];
debug(json_encode($data));

Expected result:

{
   "quantity": 5
}

Actual result:

{
   "quantity": {}
}

asgraf avatar Sep 15 '23 11:09 asgraf