-
Bug
-
Resolution: Fixed
-
Blocker
-
3.1.0-a1
-
None
They should either be provided from a provider, or we should check whether there is a service available for that class, instead of creating the instance ourselves.
Current code:
foreach ($subscriber_classes as $class)
|
{
|
$subscriber = new $class();
|
$this->dispatcher->addSubscriber($subscriber);
|
}
|