Se incorporaron dos nuevos métodos: get e json
GET
Devuelve los datos como un array
/**
* @param string $nac Type of Nationality [V|E]. Any other value will produce an Error 301
* @param string $cedula Identity Card number to consult
*/
public static function get(string $nac, string $cedula)
JSON
Devuelve los datos como un json
/**
* @param string $nac Type of Nationality [V|E]. Any other value will produce an Error 301
* @param string $cedula Identity Card number to consult
* @param bool $pretty (Optional) A JSON is returned, this parameter sets whether JSON_PRETTY_PRINT is applied. Default value FALSE
*/
public static function json(string $nac, string $cedula, bool $pretty = false)
El método info: continúa siendo el método por defecto
Full Changelog: v1.1.1...v1.1.2