You are here

public function JsonEncoder::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/serialization/src/Encoder/JsonEncoder.php \Drupal\serialization\Encoder\JsonEncoder::__construct()

File

core/modules/serialization/src/Encoder/JsonEncoder.php, line 30

Class

JsonEncoder
Adds 'ajax to the supported content types of the JSON encoder'

Namespace

Drupal\serialization\Encoder

Code

public function __construct(JsonEncode $encodingImpl = NULL, JsonDecode $decodingImpl = NULL) {
  $this->encodingImpl = $encodingImpl ?: $this
    ->getJsonEncode();
  $this->decodingImpl = $decodingImpl ?: $this
    ->getJsonDecode();
}