JsonMapper

A class that converts JSON data to equivalent Hack collections.

class JsonMapper
Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Methods

Public
ReturnsSignature and Description
Map<string,mixed>
toMap(?string $json)

Converts a JSON string to a Map.

Vector<mixed>
toVector(?string $json)

Converts a JSON string to a Vector.

Method Details

toMap

public function toMap(?string $json)

Converts a JSON string to a Map.

Parameters
NameTypeDescription
$json?string

The JSON to convert

Returns
TypeDescription
Map<string,mixed>

The Map version

Throws
TypeConditions
Illegible

if the JSON is invalid

toVector

public function toVector(?string $json)

Converts a JSON string to a Vector.

Parameters
NameTypeDescription
$json?string

The JSON to convert

Returns
TypeDescription
Vector<mixed>

The Vector version

Throws
TypeConditions
Illegible

if the JSON is invalid