diff options
Diffstat (limited to 'lib/private/Files/Cache/AbstractCacheEvent.php')
-rw-r--r-- | lib/private/Files/Cache/AbstractCacheEvent.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/private/Files/Cache/AbstractCacheEvent.php b/lib/private/Files/Cache/AbstractCacheEvent.php index 0fd03779009..741c06f3490 100644 --- a/lib/private/Files/Cache/AbstractCacheEvent.php +++ b/lib/private/Files/Cache/AbstractCacheEvent.php @@ -65,6 +65,14 @@ class AbstractCacheEvent extends Event implements ICacheEvent { } /** + * @param string $path + * @since 19.0.0 + */ + public function setPath(string $path): void { + $this->path = $path; + } + + /** * @return int * @since 16.0.0 */ |