From c0c7b9dcd948d7e5facd9ca878ddbe5b61d71bd1 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Fri, 23 May 2014 10:03:55 +0300 Subject: [PATCH] Modify Request based on feedback from Mike. --- flight/net/Request.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/flight/net/Request.php b/flight/net/Request.php index 81c64a3..7ac0773 100644 --- a/flight/net/Request.php +++ b/flight/net/Request.php @@ -185,12 +185,8 @@ class Request { $this->query->setData($_GET); } - if ($this->type == 'application/json' && $this->body != '') - { - $v = json_decode($this->body, true); - if ($v) { - $this->json = /*new Collection(*/$v;//); - } + if ($this->type == 'application/json' && $this->body != '') { + $this->json = json_decode($this->body, true); } }