Upgrade to 3.4.3

This commit is contained in:
Bastian Allgeier
2020-09-15 10:25:09 +02:00
parent 54b9ba3047
commit d8e797dd9b
108 changed files with 1750 additions and 523 deletions

View File

@@ -2,7 +2,6 @@
namespace Kirby\Cms;
use Closure;
use Kirby\Exception\InvalidArgumentException;
/**
@@ -93,7 +92,7 @@ class Field
/**
* Creates a new field object
*
* @param object $parent
* @param object|null $parent
* @param string $key
* @param mixed $value
*/
@@ -108,7 +107,7 @@ class Field
* Simplifies the var_dump result
*
* @see Field::toArray
* @return void
* @return array
*/
public function __debugInfo()
{
@@ -232,8 +231,9 @@ class Field
* the modified field will be returned. Otherwise it
* will return the field value.
*
* @param string|Closure $value
* @param string|\Closure $value
* @return mixed
* @throws \Kirby\Exception\InvalidArgumentException
*/
public function value($value = null)
{