Larval framework upated to v5.6.33

Updated laravel frameowrk version to as suggested for security patch update which was released in v5.6.30
This commit is contained in:
Manish Verma
2018-08-15 18:38:24 +05:30
parent 5d3ffdf379
commit 8148bbd920
319 changed files with 647 additions and 1078 deletions

0
vendor/laravel/framework/src/Illuminate/Http/JsonResponse.php vendored Normal file → Executable file
View File

6
vendor/laravel/framework/src/Illuminate/Http/RedirectResponse.php vendored Normal file → Executable file
View File

@@ -26,7 +26,7 @@ class RedirectResponse extends BaseRedirectResponse
protected $request;
/**
* The session store implementation.
* The session store instance.
*
* @var \Illuminate\Session\Store
*/
@@ -192,7 +192,7 @@ class RedirectResponse extends BaseRedirectResponse
}
/**
* Get the session store implementation.
* Get the session store instance.
*
* @return \Illuminate\Session\Store|null
*/
@@ -202,7 +202,7 @@ class RedirectResponse extends BaseRedirectResponse
}
/**
* Set the session store implementation.
* Set the session store instance.
*
* @param \Illuminate\Session\Store $session
* @return void

View File

@@ -60,7 +60,7 @@ class JsonResource implements ArrayAccess, JsonSerializable, Responsable, UrlRou
/**
* Create a new resource instance.
*
* @param dynamic $parameters
* @param mixed $parameters
* @return static
*/
public static function make(...$parameters)

0
vendor/laravel/framework/src/Illuminate/Http/Response.php vendored Normal file → Executable file
View File

View File

@@ -5,6 +5,7 @@ namespace Illuminate\Http;
use Illuminate\Support\Arr;
use Illuminate\Container\Container;
use Illuminate\Support\Traits\Macroable;
use Illuminate\Contracts\Filesystem\FileNotFoundException;
use Illuminate\Contracts\Filesystem\Factory as FilesystemFactory;
use Symfony\Component\HttpFoundation\File\UploadedFile as SymfonyUploadedFile;
@@ -86,6 +87,22 @@ class UploadedFile extends SymfonyUploadedFile
);
}
/**
* Get the contents of the uploaded file.
*
* @return bool|string
*
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
*/
public function get()
{
if (! $this->isValid()) {
throw new FileNotFoundException("File does not exist at path {$this->getPathname()}");
}
return file_get_contents($this->getPathname());
}
/**
* Create a new file instance from a base instance.
*

0
vendor/laravel/framework/src/Illuminate/Http/composer.json vendored Normal file → Executable file
View File