consumers as $consumer) { $c = $consumer(); if ($c instanceof IConsumer) { $c->receive($app, $subject, $message, $file, $link); } } } /** * In order to improve lazy loading a closure can be registered which will be called in case * activity consumers are actually requested * * $callable has to return an instance of OCA\Activity\IConsumer * * @param string $key * @param \Closure $callable */ function registerConsumer(\Closure $callable) { array_push($this->consumers, $callable); } }