summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2017-12-03 20:18:01 +0100
committerGitHub <noreply@github.com>2017-12-03 20:18:01 +0100
commitca8d149e296f284a2eddf398bdb43b512d1ff78f (patch)
treeb6ce532b8d8389fbd41a97aaaf748eada3a8303b
parentbd1e357eefee5ddfbb3b3567b0eae4f49bc22b75 (diff)
parent72bb7c30745b6e9c170b108e9b0840a1373e3453 (diff)
downloadnextcloud-server-ca8d149e296f284a2eddf398bdb43b512d1ff78f.tar.gz
nextcloud-server-ca8d149e296f284a2eddf398bdb43b512d1ff78f.zip
Merge pull request #7370 from nextcloud/fix-php-doc
Fix PHP doc for API docs
-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 = [];
/**