Commit 208eb8a3 authored by Taylor Otwell's avatar Taylor Otwell

move json method to input class.

parent 138d08c0
......@@ -2,6 +2,13 @@
class Input {
/**
* The JSON payload for applications using Backbone.js or similar.
*
* @var object
*/
public static $json;
/**
* The key used to store old input in the session.
*
......@@ -92,6 +99,18 @@ class Input {
return array_get(Request::foundation()->query->all(), $key, $default);
}
/**
* Get the JSON payload for the request.
*
* @return object
*/
public static function json()
{
if ( ! is_null(static::$json)) return static::$json;
return static::$json = json_decode(Request::foundation()->getContent());
}
/**
* Get a subset of the items from the input data.
*
......
......@@ -9,13 +9,6 @@ class Request {
*/
public static $route;
/**
* The JSON payload for applications using Backbone.js or similar.
*
* @var object
*/
public static $json;
/**
* The Symfony HttpFoundation Request instance.
*
......@@ -79,18 +72,6 @@ class Request {
return static::foundation()->headers->all();
}
/**
* Get the JSON payload for the request.
*
* @return object
*/
public static function json()
{
if ( ! is_null(static::$json)) return static::$json;
return static::$json = json_decode(static::foundation()->getContent());
}
/**
* Get an item from the $_SERVER array.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment