Files
json-parser/src/Decoders/ObjectDecoder.php
Andrea Marco Sartori 1ae562cdc1 First draft
2022-09-17 05:02:40 +02:00

18 lines
294 B
PHP

<?php
namespace Cerbero\JsonParser\Decoders;
/**
* The decoder to turn a JSON into an object.
*
*/
class ObjectDecoder extends ArrayDecoder
{
/**
* Whether to decode the JSON into an associative array.
*
* @var bool
*/
protected bool $decodesToArray = false;
}