<?php
namespace Symfony\Component\HttpFoundation;
class JsonResponse extends Response
{
protected $data;
protected $callback;
public const DEFAULT_ENCODING_OPTIONS = 15;
protected $encodingOptions = self::DEFAULT_ENCODING_OPTIONS;
public function __construct($data = null, int $status = 200, array $headers = [], bool $json = false)
{
parent::__construct('', $status, $headers);