-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/ps reando #18
base: develop
Are you sure you want to change the base?
Conversation
$respuesta = $this->response; //Fuerzo instanciacion ya que necesito pasarlo por referencia | ||
$ex->configurar_respuesta($respuesta); | ||
$this->logger->info("La api retorn� un error. Status: ".$respuesta->get_status()); | ||
$this->logger->info(var_export($respuesta->get_data(), true)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Este logger es PSR? Se podría mandar en el contexto la data (si no complejiza)
{ | ||
$list = array(); | ||
$list['swagger'] = "2.0"; | ||
$list['info'] = array('title' => 'API Title', 'version' => '1.0'); //TODO: Read from settings |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WIP ?
return $s; | ||
} | ||
} | ||
?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
end tags?
Puede traer algún tema si se escapa un espacio al final. Recuerdo que php-cs-fixer ayuda a quitarlos...
c4bff0a
to
d151655
Compare
- Transforma arrays => json en el constructor para evitar problema con stream. - Hace rewind del stream al recuperar el body para garantizar que recupere todo - Se adaptan la vista_json y vista_xml para que sigan devolviendo lo mismo que antes - rest_error::configurar_respuesta ahora recibe el parametro por referencia (por inmutabilidad de la rta)
…espuesta - Se agrega un json_decode a los test que recuperan el body de la respuesta directamente.
- Agrega 'use' faltantes - Fix al metodo respuesta::add_headers - Fix al metodo vista_respuesta::escribir_encabezados - Fix en metodos que no recibian la asignacion del objeto clonado - La clase 'rest.php' instancia el response de manera temprana, ya que el singleton no sirve con el esquema psr7. - Se envia la respuesta como parametro por referencia en rest_error::configurar_respuesta y proveedor_autenticacion::requerir_autenticacion
d151655
to
ab802db
Compare
No description provided.