Upgrade to Kirby 3.3.2

This commit is contained in:
Bastian Allgeier
2019-12-17 10:31:21 +01:00
parent 3a82406bed
commit 91919964db
20 changed files with 361 additions and 181 deletions

View File

@@ -15,7 +15,9 @@ use Kirby\Toolkit\Properties;
*/
class FileVersion
{
use FileFoundation;
use FileFoundation {
toArray as parentToArray;
}
use Properties;
protected $modifications;
@@ -89,7 +91,7 @@ class FileVersion
*/
public function toArray(): array
{
$array = array_merge(parent::toArray(), [
$array = array_merge($this->parentToArray(), [
'modifications' => $this->modifications(),
]);