- Issue created by @rkoller
- 🇮🇳India abhishek@kumar
If any custom service uses config.factory, ensure that it uses dependency injection in a way that doesn’t create a circular loop. Specifically, look for any direct calls to \Drupal::service('config.factory') and replace them with dependency injection.
For examplepublic function __construct(ConfigFactoryInterface $configFactory) { $this->configFactory = $configFactory; }