mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 17:52:02 -04:00
Allow to overwrite the path on the cache event
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
1e62541a15
commit
67fbacee59
2 changed files with 14 additions and 0 deletions
|
|
@ -64,6 +64,14 @@ class AbstractCacheEvent extends Event implements ICacheEvent {
|
|||
return $this->path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $path
|
||||
* @since 19.0.0
|
||||
*/
|
||||
public function setPath(string $path): void {
|
||||
$this->path = $path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int
|
||||
* @since 16.0.0
|
||||
|
|
|
|||
|
|
@ -44,6 +44,12 @@ interface ICacheEvent {
|
|||
*/
|
||||
public function getPath(): string;
|
||||
|
||||
/**
|
||||
* @param string $path
|
||||
* @since 19.0.0
|
||||
*/
|
||||
public function setPath(string $path): void;
|
||||
|
||||
/**
|
||||
* @return int
|
||||
* @since 16.0.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue