Laravel version update

Laravel version update
This commit is contained in:
Manish Verma
2018-08-06 18:48:58 +05:30
parent d143048413
commit 126fbb0255
13678 changed files with 1031482 additions and 778530 deletions

View File

@@ -31,15 +31,9 @@ class RequestContext
private $httpPort;
private $httpsPort;
private $queryString;
/**
* @var array
*/
private $parameters = array();
/**
* Constructor.
*
* @param string $baseUrl The base URL
* @param string $method The HTTP method
* @param string $host The HTTP host name
@@ -64,9 +58,7 @@ class RequestContext
/**
* Updates the RequestContext information based on a HttpFoundation Request.
*
* @param Request $request A Request instance
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function fromRequest(Request $request)
{
@@ -97,7 +89,7 @@ class RequestContext
*
* @param string $baseUrl The base URL
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setBaseUrl($baseUrl)
{
@@ -121,7 +113,7 @@ class RequestContext
*
* @param string $pathInfo The path info
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setPathInfo($pathInfo)
{
@@ -147,7 +139,7 @@ class RequestContext
*
* @param string $method The HTTP method
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setMethod($method)
{
@@ -173,7 +165,7 @@ class RequestContext
*
* @param string $host The HTTP host
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setHost($host)
{
@@ -197,7 +189,7 @@ class RequestContext
*
* @param string $scheme The HTTP scheme
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setScheme($scheme)
{
@@ -221,7 +213,7 @@ class RequestContext
*
* @param int $httpPort The HTTP port
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setHttpPort($httpPort)
{
@@ -245,7 +237,7 @@ class RequestContext
*
* @param int $httpsPort The HTTPS port
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setHttpsPort($httpsPort)
{
@@ -269,7 +261,7 @@ class RequestContext
*
* @param string $queryString The query string (after "?")
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setQueryString($queryString)
{
@@ -294,7 +286,7 @@ class RequestContext
*
* @param array $parameters The parameters
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setParameters(array $parameters)
{
@@ -333,7 +325,7 @@ class RequestContext
* @param string $name A parameter name
* @param mixed $parameter The parameter value
*
* @return RequestContext The current instance, implementing a fluent interface
* @return $this
*/
public function setParameter($name, $parameter)
{