Skip to content
Snippets Groups Projects
Unverified Commit f6ef3b64 authored by Morris Jobke's avatar Morris Jobke
Browse files

add proper type hinting


Signed-off-by: default avatarMorris Jobke <hey@morrisjobke.de>
parent ad757805
No related branches found
No related tags found
No related merge requests found
...@@ -48,6 +48,7 @@ class Registry implements IRegistry { ...@@ -48,6 +48,7 @@ class Registry implements IRegistry {
* @param array $context * @param array $context
*/ */
public function delegateReport($exception, array $context = []) { public function delegateReport($exception, array $context = []) {
/** @var IReporter $reporter */
foreach ($this->reporters as $reporter) { foreach ($this->reporters as $reporter) {
$reporter->report($exception, $context); $reporter->report($exception, $context);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment