Exemplo n.º 1
0
 /**
  * {@inheritDoc}
  */
 public function decode($json)
 {
     $result = json_decode($json, $this->config->getUseAssoc(), $this->config->getMaxDepth(), $this->config->getOptionsBitmask());
     if (json_last_error() != JSON_ERROR_NONE) {
         throw new JsonException(json_last_error_msg(), json_last_error());
     }
     return $result;
 }