Upgrade to 3.2.1

This commit is contained in:
Bastian Allgeier
2019-07-09 16:45:40 +02:00
parent 7b4170f17e
commit 2694b3d76f
38 changed files with 282 additions and 150 deletions

View File

@@ -13,8 +13,8 @@ return [
/**
* Image settings for each item
*/
'image' => function (array $image = null) {
return $image ?? [];
'image' => function ($image = null) {
return $image;
},
/**
@@ -55,7 +55,7 @@ return [
/**
* Main text for each item
*/
'text' => function (string $text = '{{ file.filename }}') {
'text' => function (string $text = null) {
return $text;
},