Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
This commit is contained in:
Maxence Lange 2020-12-08 21:47:16 -01:00 committed by Roeland Jago Douma
parent 85783e45e9
commit 874a1a4c43
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 3 additions and 3 deletions

View File

@ -37,12 +37,13 @@ class ShareDeletedEvent extends Event {
/** @var IShare */
private $share;
/** @var array */
/** @var IShare[] */
private $children;
/**
*
* @param IShare $share
* @param array $children
* @param IShare[] $children
*
* @since 21.0.0
*/
@ -76,5 +77,4 @@ class ShareDeletedEvent extends Event {
public function getAllDeletedShares(): array {
return array_merge([$this->share], $this->children);
}
}