diff options
Diffstat (limited to 'lib/public/Share/Events/ShareDeletedEvent.php')
-rw-r--r-- | lib/public/Share/Events/ShareDeletedEvent.php | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/lib/public/Share/Events/ShareDeletedEvent.php b/lib/public/Share/Events/ShareDeletedEvent.php index 4db0e6767e6..4dca946aff3 100644 --- a/lib/public/Share/Events/ShareDeletedEvent.php +++ b/lib/public/Share/Events/ShareDeletedEvent.php @@ -37,9 +37,6 @@ class ShareDeletedEvent extends Event { /** @var IShare */ private $share; - /** @var IShare[] */ - private $children; - /** * * @param IShare $share @@ -47,11 +44,10 @@ class ShareDeletedEvent extends Event { * * @since 21.0.0 */ - public function __construct(IShare $share, array $children = []) { + public function __construct(IShare $share) { parent::__construct(); $this->share = $share; - $this->children = $children; } /** @@ -61,20 +57,4 @@ class ShareDeletedEvent extends Event { public function getShare(): IShare { return $this->share; } - - /** - * @return IShare[] - * @since 21.0.0 - */ - public function getChildren(): array { - return $this->children; - } - - /** - * @return IShare[] - * @since 21.0.0 - */ - public function getAllDeletedShares(): array { - return array_merge([$this->share], $this->children); - } } |