From f6ef3b646457c1194e3550fdf2cd14a839ee273a Mon Sep 17 00:00:00 2001 From: Morris Jobke <hey@morrisjobke.de> Date: Tue, 14 Nov 2017 14:49:24 +0100 Subject: [PATCH] add proper type hinting Signed-off-by: Morris Jobke <hey@morrisjobke.de> --- lib/private/Support/CrashReport/Registry.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/Support/CrashReport/Registry.php b/lib/private/Support/CrashReport/Registry.php index e90e82958d1..670cea3da0e 100644 --- a/lib/private/Support/CrashReport/Registry.php +++ b/lib/private/Support/CrashReport/Registry.php @@ -48,6 +48,7 @@ class Registry implements IRegistry { * @param array $context */ public function delegateReport($exception, array $context = []) { + /** @var IReporter $reporter */ foreach ($this->reporters as $reporter) { $reporter->report($exception, $context); } -- GitLab