Dropped status code method

The function `http_response_code` was added in PHP 5.4 which deprecated the
code I had written. Dropped functionality and tests and updated code to use the
new function.
This commit is contained in:
Josh Sherman 2014-09-28 08:36:14 -04:00
parent da379d0849
commit 3b8eddc7b5
3 changed files with 1 additions and 136 deletions

View file

@ -380,6 +380,7 @@ class Resource extends Object
public function respond()
{
http_response_code($this->status);
header('Content-Type: application/json');
header('X-Powered-By: Pickles v2 - https://github.com/joshtronic/pickles');