lithium\storage\cache\strategy\Json::write PHP Method

write() public method

Encodes the passed data from an array to JSON format.
public write ( mixed $data ) : string
$data mixed The data to be encoded.
return string The encoded data.
    public function write($data)
    {
        return json_encode($data);
    }