converting cookies to use http foundation.

This commit is contained in:
Taylor Otwell
2012-03-28 22:43:58 -05:00
parent ad41be0eed
commit 730808fb02
5 changed files with 67 additions and 147 deletions

View File

@@ -78,7 +78,7 @@ class Request {
*/
public static function ip($default = '0.0.0.0')
{
return value(static::$foundation->getClientIp(), $default);
return value(static::foundation()->getClientIp(), $default);
}
/**
@@ -98,7 +98,7 @@ class Request {
*/
public static function accept()
{
return static::$foundation->getAcceptableContentTypes();
return static::foundation()->getAcceptableContentTypes();
}
/**
@@ -118,7 +118,7 @@ class Request {
*/
public static function secure()
{
return static::$foundation->isSecure();
return static::foundation()->isSecure();
}
/**
@@ -140,7 +140,7 @@ class Request {
*/
public static function ajax()
{
return static::$foundation->isXmlHttpRequest();
return static::foundation()->isXmlHttpRequest();
}
/**
@@ -194,6 +194,16 @@ class Request {
return static::$route;
}
/**
* Get the Symfony HttpFoundation Request instance.
*
* @return HttpFoundation\Request
*/
public static function foundation()
{
return static::$foundation;
}
/**
* Pass any other methods to the Symfony request.
*
@@ -203,7 +213,7 @@ class Request {
*/
public static function __callStatic($method, $parameters)
{
return call_user_func_array(array(static::$foundation, $method), $parameters);
return call_user_func_array(array(static::foundation(), $method), $parameters);
}
}