Skip to content

Commit cfff0ea

Browse files
committed
fix: Adjust constructor signature to new 8.3 features
1 parent 13ac945 commit cfff0ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Classes/Log/RotatingFileStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function __construct(
5454
int $exceptionsToKeep,
5555
int $archiveThreshold
5656
) {
57-
parent::__construct($storagePath);
57+
parent::__construct($storagePath, 0, 0);
5858

5959
$this->archiveStoragePath = $archiveStoragePath;
6060
$this->unbundledExceptions = $exceptionsToKeep;

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"description": "Bundle old Flow exceptions to zips",
55
"license": ["MIT"],
66
"require": {
7-
"neos/flow": "^5.3 || ^6.3 || ^7.0 || ^8.0",
8-
"neos/utility-files": "^5.3 || ^6.3 || ^7.0 || ^8.0"
7+
"neos/flow": "^8.3",
8+
"neos/utility-files": "^8.3"
99
},
1010
"autoload": {
1111
"psr-4": {

0 commit comments

Comments
 (0)