Upgrade to 3.2.0

This commit is contained in:
Bastian Allgeier
2019-06-25 09:56:08 +02:00
parent 9e18cf635d
commit 9c89153d35
296 changed files with 14408 additions and 2504 deletions

View File

@@ -2,7 +2,6 @@
namespace Kirby\Http;
use Kirby\Toolkit\A;
use Kirby\Toolkit\Collection;
use Kirby\Toolkit\Mime;
use Kirby\Toolkit\Obj;
@@ -15,9 +14,9 @@ use Kirby\Toolkit\Str;
*
* @package Kirby Http
* @author Bastian Allgeier <bastian@getkirby.com>
* @link http://getkirby.com
* @copyright Bastian Allgeier
* @license MIT
* @link https://getkirby.com
* @copyright Bastian Allgeier GmbH
* @license https://opensource.org/licenses/MIT
*/
class Visitor
{
@@ -69,7 +68,7 @@ class Visitor
* accepted language otherwise
*
* @param string|null $acceptedLanguage
* @return Obj|Visitor|null
* @return Kirby\Toolkit\Obj|Kirby\Http\Visitor|null
*/
public function acceptedLanguage(string $acceptedLanguage = null)
{
@@ -85,7 +84,7 @@ class Visitor
* Returns an array of all accepted languages
* including their quality and locale
*
* @return Collection
* @return Kirby\Toolkit\Collection
*/
public function acceptedLanguages()
{
@@ -136,7 +135,7 @@ class Visitor
* accepted mime type otherwise
*
* @param string|null $acceptedMimeType
* @return Obj|Visitor
* @return Kirby\Toolkit\Obj|Kirby\Http\Visitor
*/
public function acceptedMimeType(string $acceptedMimeType = null)
{
@@ -151,7 +150,7 @@ class Visitor
/**
* Returns a collection of all accepted mime types
*
* @return Collection
* @return Kirby\Toolkit\Collection
*/
public function acceptedMimeTypes()
{