Skip to content

v1.1.2

Latest
Compare
Choose a tag to compare
@bracodev bracodev released this 22 Nov 19:49

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