akrabat / slim3-skeleton

Simple Slim Framework 3 skeleton with Twig & Monolog
BSD 3-Clause "New" or "Revised" License
344 stars 99 forks source link

Fixing incorrect request/response FQNS #35

Closed Antnee closed 8 years ago

Antnee commented 8 years ago

By default (and in the case of this skeleton app) Slim returns request and response objects that have additional functionality over PSR-7. Although they are PSR-7 compliant, they have these additional methods which is useful. If you are using these methods then your IDE will probably highlight them as an error due to the PSR-7 type-hinting.

Refs #34