From 39c4a83f9f1cf2472d29cd772659bf9ed2e85e56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 14 Oct 2021 17:11:34 +0200 Subject: [PATCH] Add already used optional sizeDifference parameter to IPropagator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/public/Files/Cache/IPropagator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/public/Files/Cache/IPropagator.php b/lib/public/Files/Cache/IPropagator.php index 8be6c878a97..0ff72cd849f 100644 --- a/lib/public/Files/Cache/IPropagator.php +++ b/lib/public/Files/Cache/IPropagator.php @@ -49,7 +49,8 @@ interface IPropagator { /** * @param string $internalPath * @param int $time + * @param int $sizeDifference * @since 9.0.0 */ - public function propagateChange($internalPath, $time); + public function propagateChange($internalPath, $time, $sizeDifference = 0); }