$config =
$this->pluginConfigurationFactory->
createFromBundle($bundle);
$this->pluginConfigurations === null ?:
$this->pluginConfigurations->
add($config);
} } private function addAppConfigs(): void
{ foreach ($this->activeAppsLoader->
getActiveApps() as $app) { $config =
$this->pluginConfigurationFactory->
createFromApp($app['name'
],
$app['path'
]);
$this->pluginConfigurations === null ?:
$this->pluginConfigurations->
add($config);
} }}