public function JsonDecode::__construct

File

drupal/core/vendor/symfony/serializer/Symfony/Component/Serializer/Encoder/JsonDecode.php, line 25

Class

JsonDecode
Decodes JSON data

Namespace

Symfony\Component\Serializer\Encoder

Code

public function __construct($associative = false, $depth = 512) {
  $this->associative = $associative;
  $this->recursionDepth = $depth;
}