Matt

Results 23 comments of Matt

I guess you do have a point. If the base response has no need for the base request, why pass it in? It just seems natural to me that the...

I guess you do have a point. If the base response has no need for the base request, why pass it in? It just seems natural to me that the...

The syntax error breaks phar-verify.

Yes that's the only way I know to deal with it. I'm already crawling the resource to provide an options method for the resource: ``` $metadata = $this->app->getResourceMetadata($this); $allowedMethods =...

The fix is just to change the Tonic Response class: $headers = array('Content-Type' => 'text/html');

https://github.com/peej/tonic/pull/196

More correctly the content-location header implies content negotiation but it does not imply what kind of content-negotiation.

Adding the vary header says that the content was negotiated. The issue is that the application depending on tonic decides how it will negotiate that content. It's not accurate to...

I wrote this a while back based on an old version of Tonic but I believe the code could still be used even though for some reason the request is...