summaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/Hooks/EmitterTrait.php2
-rw-r--r--lib/private/Support/CrashReport/Registry.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Hooks/EmitterTrait.php b/lib/private/Hooks/EmitterTrait.php
index cb061d4b998..da8b8460d0a 100644
--- a/lib/private/Hooks/EmitterTrait.php
+++ b/lib/private/Hooks/EmitterTrait.php
@@ -25,7 +25,7 @@ namespace OC\Hooks;
trait EmitterTrait {
/**
- * @var (callable[])[] $listeners
+ * @var callable[][] $listeners
*/
protected $listeners = array();
diff --git a/lib/private/Support/CrashReport/Registry.php b/lib/private/Support/CrashReport/Registry.php
index 670cea3da0e..5eb78965c19 100644
--- a/lib/private/Support/CrashReport/Registry.php
+++ b/lib/private/Support/CrashReport/Registry.php
@@ -29,7 +29,7 @@ use Throwable;
class Registry implements IRegistry {
- /** @var array<IReporter> */
+ /** @var IReporter[] */
private $reporters = [];
/**