Hello.
We want to implement full REST in our application (this is means we want to enable "PUT" and "DELETE" queries in the API).
There is one trouble with "PUT"-query parameters: Payload parameters of HTTP-PUT-request does not exists In the $_GLOABALS. So we can't access them through $this->request->get() ($this->request is \Phalcon\Http\Request).
But if we read 'php://input' we can see all passed "PUT"-parameters. Is there way to access parameters with \Phalcon framework or we need to parse "manually" every "PUT"-request?